Documentation Index
Fetch the complete documentation index at: https://arize-ax.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Programmatically Creating Dashboards
Creating a Dashboard Using a Template
Programmatically create a dashboard using one of our predefined templates, streamlining the setup process for common use cases
mutation create(
$name:String!
$modelId:ID!
$template:DashboardTemplates!
$postiveClass: String!
){
createDashboardFromTemplate(input:
{
name:$name
modelId:$modelId
template: $template
positiveClass: $postiveClass
}
){
dashboard{
id
}
}
}
variables
{
"name": "dashboard-name",
"modelId": "model_id",
"template": "templateName",
"postiveClass": "fraud"
}
Create an Empty Dashboard
When creating a new custom dashboard, you first need to create an empty state dashboard to add widgets to:
mutation createDashTest($name: String!, $spaceId: ID!) {
createDashboard(input: { name: $name, spaceId: $spaceId }) {
dashboard {
id
}
}
}
This will return the dashboard id to use in mutations to add widgets.
To visualize data variations and overall distribution patterns on your dashboard, use the createBarChartWidget mutation.
mutation createBarChartWidget(
$title:String!
$dashboardId:ID!
$plots:[BarChartPlotInputInput!]!
){
createBarChartWidget(
input:
{
title:$title
dashboardId: $dashboardId
plots: $plots
}
){
barChartWidget{
id
}
}
}
variable
{
"title": "widget-title",
"dashboardId": "dashboard_id",
"plots": [
{
"title": "plot-title",
"position": 1,
"modelId": "model_id",
"dimension": {
"id": "dimension_id",
"name": "dimension_name",
"dataType": "STRING"
},
"dimensionCategory": "featureLabel",
"filters": [],
"modelVersionIds": []
}
]
}
Use the createLineChartWidget to add a time series widget to your dashboard, which is perfect for visualizing performance over time, data quality, and analyzing trends with options to add multiple lines or split data by specific criteria.
To effectively monitor data drift, utilize the createLineChartWidget mutation with the widgetType input set to driftLineChartWidget. Below is an example that demonstrates using the PSI. You also have the flexibility to opt for other statistical methods such as Jensen-Shannon distance (JS) or Kullback-Leibler (KL) divergence, depending on your analysis needs.
mutation createDriftWidget(
$title:String!
$dashboardId:ID!
$plots:[LineChartPlotInputInput!]!
$timeSeriesMetricType: TimeSeriesMetricCategory!
){
createLineChartWidget(
input:
{
title:$title
timeSeriesMetricType: $timeSeriesMetricType
dashboardId: $dashboardId
plots: $plots
widgetType: driftLineChartWidget
}
){
lineChartWidget{
id
}
}
}
variables
{
"title": "drift-widget-title",
"dashboardId": "dashbaord_id",
"timeSeriesMetricType": "evaluationMetric",
"plots": [{
"modelId": "model_id",
"modelVersionIds": [],
"dimensionCategory": "prediction",
"metric": "psi",
"title": "drift-plot-title",
"position": 1,
"modelEnvironmentName": "production",
"filters": [],
"comparisonDatasetModelBaselineId": "baseline_id"
}
]
}
To get your baselineId you can query your model:
query getBaseline($modelID:ID!){
node(id: $modelID) {
... on Model {
modelPrimaryBaseline{
id
}
}
}
}
Visualize your monitors using a monitor widget.
mutation createMonitorChartWidget(
$title:String!
$dashboardId:ID!
$monitorId: ID!
){
createLineChartWidget(
input:
{
title:$title
timeSeriesMetricType: evaluationMetric
dashboardId: $dashboardId
monitorId: $monitorId
widgetType: monitorLineChartWidget
}
){
lineChartWidget{
id
}
}
}
variables
{
"title": "widget-title",
"dashboardId": "dashboard_id",
"monitorId": "monitor_id"
}
Add a statistics widget that displays key metrics, tailored to focus on either performance indicators or data quality metrics. This widget provides a quick overview and valuable insights at a glance.
Add a Text Widget
Add a text widget to your dashboard to offer explanatory text, headings, or contextual information, enriching the dashboard’s narrative and usability.
mutation createTextWidget(
$title:String!
$dashboardId:ID!
$content:String!
){
createTextWidget(
input:
{
dashboardId: $dashboardId
title:$title
content: $content
creationStatus:published
})
{
textWidget{
id
}
}
}
variables
{
"title": "text-widget-title",
"dashboardId": "dashboard_id",
"content": "content for the text widget"
}
query DashboardsPublic {
dashboard: node(id: "DASHBOARD_ID") {
... on Dashboard {
id
name
status
creator {
id
name
}
models {
edges {
node {
id
modelType
modelEnvironments {
name
id
}
}
}
}
statisticWidgets {
edges {
node {
id
title
gridPosition
creationStatus
}
}
}
barChartWidgets {
edges {
node {
id
title
gridPosition
creationStatus
performanceMetric
yMin
yMax
sortOrder
}
}
}
lineChartWidgets {
edges {
node {
id
title
gridPosition
creationStatus
yMin
yMax
}
}
}
driftLineChartWidgets {
edges {
node {
id
title
gridPosition
creationStatus
yMin
yMax
}
}
}
textWidgets {
edges {
node {
id
title
gridPosition
creationStatus
content
}
}
}
monitorLineChartWidgets {
edges {
node {
id
title
gridPosition
creationStatus
yMin
yMax
monitor {
__typename
... on WidgetMonitor {
id
name
monitorTypeGlobalId
}
... on MonitorEntityState {
code
}
}
}
}
}
}
}
}
Query for the underlying data in a dashboard widget.
Distribution
Timeseries
Statistic Widget
query GetDistributionData {
node(id: "WIDGET_ID") {
...on BarChartWidget {
config {
indexBy
keys
axisBottom {
legend
}
axisLeft {
legend
}
}
bars(
startDate: "2024-09-08T07:00:00.000Z"
endDate: "2024-10-09T06:59:59.999Z"
filters: []
first: 96
barsStartCursor: 0
) {
edges {
node {
keysAndValues {
k
v
vType
secondaryValue
secondaryValueType
secondaryValueColorIndex
plotKey
}
evalMetricMin
evalMetricMax
__typename
}
cursor
}
total
pageInfo {
startCursor
endCursor
hasNextPage
hasPreviousPage
}
}
}
}
}
query GetTimeseriesData {
node(id: "WIDGET_ID") {
...on LineChartWidget {
config {
axisBottom {
legend
}
axisLeft {
legend
}
}
lines(
startDate: "2024-09-08T07:00:00.000Z"
endDate: "2024-10-09T06:59:59.999Z"
filters: []
timeSeriesDataGranularity: day
timeZone: "UTC"
) {
key
dataPoints {
x
y
}
}
}
}
}
query GetStatisticData {
node(id: "WIDGET_ID") {
...on StatisticWidget {
statisticValue(
startDate: "2024-09-08T07:00:00.000Z"
endDate: "2024-10-09T06:59:59.999Z"
filters: [])
}
}
}
Examples
| Use case | Example Colab |
|---|
| Create a custom dashboard | Colab |
| Copy an existing dashboard | Colab |