0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Guide AlertをAggregation APIでとる方法

Posted at

自分用メモシリーズ
過去180日のガイドアラートを取ってくる

#prepare rest api call
import requests
import json
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import json
# pendo aggregation api
pendo_url = 'https://app.pendo.io/api/v1/aggregation/'
pendo_token = "xxxxxx"
pendo_headers = {'x-pendo-integration-key': pendo_token, 'content-type': 'application/json'}
query =  {"request": {
        "name": "Guide Alerts",
        "pipeline": [
            {
                "source": {
                    "guideEvents": {
                        "blacklist": "apply",
                        "appId": "-323232"
                    },
                    "timeSeries": {
                        "period": "dayRange",
                        "first": "now()",
                        "count": -180
                    }
                }
            },
            {
                "filter": "type==\"guideTimeout\""
            },
            {
                "merge": {
                    "fields": [
                        "guideId",
                        "guideStepId"
                    ],
                    "mappings": {
                        "numTotalVisitors": "numTotalVisitors"
                    },
                    "pipeline": [
                        {
                            "source": {
                                "guideEvents": {
                                    "blacklist": "apply",
                                    "appId": "expandAppIds(\"*\")"
                                },
                                "timeSeries": {
                                    "period": "dayRange",
                                    "first": now(),
                                    "count": -180
                                }
                            }
                        },
                        {
                            "filter": "type==\"guideSeen\" || type==\"guideTimeout\""
                        },
                        {
                            "group": {
                                "group": [
                                    "guideStepId",
                                    "guideId"
                                ],
                                "fields": [
                                    {
                                        "numTotalVisitors": {
                                            "count": "visitorId"
                                        }
                                    }
                                ]
                            }
                        }
                    ]
                }
            },
            {
                "group": {
                    "group": [
                        "guideId",
                        "guideStepId",
                        "guideSeenReason"
                    ],
                    "fields": [
                        {
                            "numTimeoutVisitors": {
                                "count": "visitorId"
                            }
                        },
                        {
                            "numTotalVisitors": {
                                "first": "numTotalVisitors"
                            }
                        },
                        {
                            "lastOccurrence": {
                                "max": "browserTime"
                            }
                        },
                        {
                            "firstOccurrence": {
                                "min": "browserTime"
                            }
                        }
                    ]
                }
            },
            {
                "merge": {
                    "fields": [
                        "guideId"
                    ],
                    "pipeline": [
                        {
                            "source": {
                                "guides": {
                                    "appId": "expandAppIds(\"*\")"
                                }
                            }
                        },
                        {
                            "eval": {
                                "guideId": "id"
                            }
                        },
                        {
                            "unwind": {
                                "field": "steps",
                                "prefix": True
                            }
                        }
                    ]
                }
            },
            {
                "eval": {
                    "percentVisitorsImpacted": "round(10000 * (numTimeoutVisitors / numTotalVisitors)) / 100"
                }
            },
            {
                "select": {
                    "guideName": "name",
                    "guideId": "guideId",
                    "appId": "appId",
                    "lastOccurrence": "lastOccurrence",
                    "firstOccurrence": "firstOccurrence",
                    "lastUpdatedByUser": "lastUpdatedByUser.username",
                    "lastUpdatedAt": "lastUpdatedAt",
                    "audienceFilter": "audienceUiHint.filters",
                    "launchMethod": "launchMethod",
                    "visitorsImpacted": "numTimeoutVisitors",
                    "totalVisitors": "numTotalVisitors",
                    "percentVisitorsImpacted": "percentVisitorsImpacted",
                    "displayAlertType": "guideSeenReason",
                    "steps": "steps",
                    "impactedStepId": "guideStepId"
                }
            }
        ],
        "params": {
            "appId": "-323232",
            "blacklist": "apply",
            "timeSeries": {
                "period": "dayRange",
                "first": "now()",
                "count": -180
            }
        }
    }
}
body = json.dumps(query)

# send request as post
response = requests.post(pendo_url, headers=pendo_headers, data=body)

df = pd.DataFrame(response.json()['results'])

ErrorになっているStep IDを抜き出す

steps = df['steps']
for i in range(len(steps)):
    for j in range(len(steps[i])):
        #if step id matches record
        if steps[i][j]['id'] == df['impactedStepId'][i]:
            df.loc[i, 'stepnum'] = j


df[['percentVisitorsImpacted','visitorsImpacted','guideName','displayAlertType','stepnum','impactedStepId']]

結果

影響を受けたvisitor%、影響を受けたvisitor#, ガイドの名前, エラータイプ, ステップ番号, ステップID
CleanShotuJkC25OZ.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?