Skip to main content

Overview

Dashboard summary and key metrics

Alert: Ideogram API experiencing higher than normal error rates (7.2%). View details

Active Users

+12.5%

2,847

last 24h

0 Target: 3,500

Images Generated

+8.3%

12,584

today

0 Target: 20,000

Vectors Converted

+2.1%

4,392

today

0 Target: 10,000

Revenue

+15.4%

$28,429

this month

$0 Target: $35,000

Pending Reports

+24.8%

37

awaiting review

0 Target: <20

User Activity

Content Generation

Recent Activity

System Status

  • Ideogram API
    Operational
  • Vectorizer API
    Operational
  • Image Processing
    Degraded
  • Database
    Operational
  • Stripe Integration
    Operational

Server Resources

CPU Usage 42%
Memory Usage 68%
Storage 23%

User Management

Search, filter, and manage user accounts

Show entries
Select User Registration Date Tier Credits Status Actions
Sarah Johnson
sarah.johnson@example.com
ID: USR-2938471
Jan 15, 2023
Pro 247 Active
Michael Chen
michael.chen@example.com
ID: USR-1029384
Feb 28, 2023
Free 12 Active
Jessica Williams
jessica.williams@example.com
ID: USR-7654321
Mar 10, 2023
Pro 532 Suspended
Robert Smith
robert.smith@example.com
ID: USR-5647382
Apr 5, 2023
Admin Unlimited Active
Emily Davis
emily.davis@example.com
ID: USR-9876543
May 22, 2023
Free 0 Active

Content Moderation

Review and manage reported content

Report ID Image Reporter Reason Date Reported Status Actions
RPT-2938471
Sarah Johnson
sarah.johnson@example.com
Inappropriate Content May 28, 2023, 10:23 AM Pending
RPT-1029384
Michael Chen
michael.chen@example.com
Copyright Violation May 27, 2023, 3:45 PM Pending
RPT-7654321
Jessica Williams
jessica.williams@example.com
Offensive Content May 26, 2023, 9:12 AM Approved
RPT-5647382
Robert Smith
robert.smith@example.com
Other May 25, 2023, 2:30 PM Rejected
RPT-9876543
Emily Davis
emily.davis@example.com
Inappropriate Content May 24, 2023, 11:05 AM Pending

Analytics

Monitor platform performance and user engagement

Date Range:

Daily Active Users

Last 30 days
2,847 +12.5%

Content Generation

Last 30 days

Images Generated

12,584

+8.3% vs last period

Vectors Converted

4,392

+2.1% vs last period

Revenue Trend

Last 30 days

Subscription Revenue

$21,384

+15.4% vs last period

Credit Purchases

$7,045

+9.2% vs last period

User Engagement

Content Creator Favorites Type
Neon City Skyline
Sarah Johnson
1,284
Image
Abstract Patterns
Michael Chen
956
Vector
Futuristic Interface
Jessica Williams
847
Image
Nature Landscapes
Robert Smith
723
Image

API Performance

Ideogram API Latency

247ms

-12%

Ideogram Error Rate

7.2%

+3.1%

Vectorizer API Latency

312ms

-5%

Vectorizer Error Rate

2.4%

-1.2%

Processing Queue Status

Image Generation Queue

42 jobs

Avg. wait time: 1m 23s

Capacity: 35%

Vector Conversion Queue

17 jobs

Avg. wait time: 42s

Capacity: 15%

Prompt Templates Usage

Very High
High
Medium
Low
Very Low
+ value.toLocaleString(); } } }, x: { grid: { display: false }, ticks: { maxTicksLimit: 10 } } } } }); // API Performance Mini Charts const createMiniChart = (elementId, data, color) => { const ctx = document.getElementById(elementId).getContext('2d'); return new Chart(ctx, { type: 'line', data: { labels: Array.from({length: 24}, (_, i) => i), datasets: [{ data: data, borderColor: color, borderWidth: 2, pointRadius: 0, tension: 0.4, fill: false }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false }, tooltip: { enabled: false } }, scales: { x: { display: false }, y: { display: false } }, elements: { line: { tension: 0.4 } } } }); }; createMiniChart('ideogramLatencyChart', [280, 275, 260, 270, 265, 255, 250, 260, 255, 240, 245, 250, 240, 235, 245, 250, 255, 245, 240, 235, 240, 245, 250, 247], 'rgba(16, 185, 129, 1)'); createMiniChart('ideogramErrorChart', [4.1, 4.3, 4.5, 4.8, 5.0, 5.2, 5.5, 5.8, 6.0, 6.2, 6.5, 6.8, 7.0, 7.2, 7.0, 6.8, 7.0, 7.2, 7.0, 6.8, 7.0, 7.2, 7.0, 7.2], 'rgba(239, 68, 68, 1)'); createMiniChart('vectorizerLatencyChart', [330, 325, 320, 325, 330, 325, 320, 315, 320, 325, 320, 315, 310, 315, 320, 315, 310, 315, 320, 315, 310, 315, 310, 312], 'rgba(16, 185, 129, 1)'); createMiniChart('vectorizerErrorChart', [3.6, 3.5, 3.4, 3.3, 3.2, 3.1, 3.0, 2.9, 2.8, 2.7, 2.6, 2.5, 2.4, 2.5, 2.6, 2.5, 2.4, 2.5, 2.4, 2.3, 2.4, 2.5, 2.4, 2.4], 'rgba(16, 185, 129, 1)'); // Prompt Templates Heatmap const promptTemplatesCtx = document.getElementById('promptTemplatesHeatmap').getContext('2d'); // Create data for the heatmap const days = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']; const templates = ['Artistic Portrait', 'Landscape', 'Abstract', 'Product', 'Sci-Fi', 'Fantasy', 'Minimalist']; // Generate random data for the heatmap const generateHeatmapData = () => { return templates.map(() => { return days.map(() => Math.floor(Math.random() * 100)); }); }; const heatmapData = generateHeatmapData(); // Create a custom chart type for the heatmap const promptTemplatesHeatmap = new Chart(promptTemplatesCtx, { type: 'matrix', data: { datasets: [{ data: heatmapData.flatMap((row, i) => row.map((value, j) => ({ x: j, y: i, v: value })) ), backgroundColor(context) { const value = context.dataset.data[context.dataIndex].v; const alpha = value / 100; return `rgba(59, 130, 246, ${alpha})`; }, borderWidth: 1, borderColor: 'white', width: ({ chart }) => (chart.chartArea || {}).width / 7 - 1, height: ({ chart }) => (chart.chartArea || {}).height / 7 - 1 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false }, tooltip: { callbacks: { title() { return ''; }, label(context) { const { x, y, v } = context.dataset.data[context.dataIndex]; return `${templates[y]} (${days[x]}): ${v} uses`; } } } }, scales: { x: { type: 'category', labels: days, grid: { display: false } }, y: { type: 'category', labels: templates, offset: true, grid: { display: false } } } } }); });

Billing & Subscriptions

Manage subscription plans and payment processing

Total Revenue (This Month)

+15.4%

$28,429

vs $24,637 last month

Target: $35,000 85% achieved

Active Subscribers

+8.7%

1,247

vs 1,148 last month

Target: 1,600 78% achieved

Churn Rate

-1.2%

3.4%

vs 4.6% last month

Target: <3% Almost there!

Subscription Overview

Free Users

3,842

+15.2%

Basic Plan

584

+7.3%

Pro Plan

452

+12.8%

Enterprise

211

+4.5%

New vs. Churned Subscribers

New Subscribers

124 this month

Target: 165

75% achieved

Churned Subscribers

42 this month

Target: <50

Under target!

Revenue Breakdown

Subscriptions

$21,384

75.2% of total

Credit Purchases

$7,045

24.8% of total

Top Revenue Users

  • Sarah Johnson

    Enterprise Plan

    ,247

  • Michael Chen

    Pro Plan + Credits

    $984

  • Jessica Williams

    Enterprise Plan

    $847

  • Robert Smith

    Pro Plan + Credits

    $723

  • Emily Davis

    Pro Plan

    $652

Stripe Integration

Event Customer Amount Status Date Actions
Payment Succeeded
ch_3NxYz1JK8lMn9
Sarah Johnson
sarah.johnson@example.com
$49.99
Pro Plan (Monthly)
Successful May 28, 2023, 10:23 AM
Payment Failed
ch_3NxYa2JK8lMn7
Michael Chen
michael.chen@example.com
$99.99
Credit Purchase
Failed May 27, 2023, 3:45 PM
Subscription Created
sub_3NxYq3JK8lMn5
Jessica Williams
jessica.williams@example.com
99.99
Enterprise Plan (Monthly)
Active May 26, 2023, 9:12 AM
Payment Succeeded
ch_3NxYb4JK8lMn3
Robert Smith
robert.smith@example.com
$49.99
Pro Plan (Monthly)
Successful May 25, 2023, 2:30 PM
Subscription Canceled
sub_3NxYc5JK8lMn1
Emily Davis
emily.davis@example.com
$49.99
Pro Plan (Monthly)
Canceled May 24, 2023, 11:05 AM

Settings

Configure system preferences and notification settings

General Settings

Free Credits

Enable or disable free credits for new users

Credit Pricing

$
$
$

Prompt Templates

  • Artistic Portrait

    Create a detailed artistic portrait in the style of...

  • Landscape

    Generate a breathtaking landscape with mountains...

  • Abstract

    Create an abstract composition with vibrant colors...

Style Tags

Photorealistic Anime Watercolor Sci-Fi Fantasy Minimalist

API Configuration

Ideogram API

Connected
Last tested: 10 minutes ago

Vectorizer API

Connected
Last tested: 5 minutes ago

Stripe Webhook

Active

Webhook Endpoint URL:

https://yourapp.com/api/webhooks/stripe

Notifications

System alerts and important notifications

Filter:

Ideogram API Error Rate Critical

Error rate has reached 12.5%, exceeding the critical threshold of 10%. Immediate attention required.

5 minutes ago

High Server CPU Usage

Server CPU usage has reached 85%, approaching the warning threshold of 90%.

15 minutes ago

Stripe Webhook Error

Failed to process payment webhook for user Michael Chen (ID: USR-1029384). Payment of $99.99 not processed.

30 minutes ago

New Content Reports

5 new content reports have been submitted in the last hour. Current pending reports: 37.

45 minutes ago

System Update Completed

The scheduled system update has been completed successfully. New features are now available.

2 hours ago

Database Backup Completed

Daily database backup has been completed successfully. Backup size: 2.4GB.

Yesterday, 11:30 PM

New Pro Subscriber

Jessica Williams has upgraded to a Pro subscription plan ($49.99/month).

Yesterday, 9:12 AM