You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MyApp/_pages/admin-ui-database.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ The Database Admin UI lets you quickly browse and navigate your App's configured
9
9
It can be enabled by registering the `AdminDatabaseFeature` plugin from [ServiceStack.Server](https://nuget.org/packages/ServiceStack.Server):
10
10
11
11
```csharp
12
-
Plugins.Add(newAdminDatabaseFeature());
12
+
services.AddPlugin(newAdminDatabaseFeature());
13
13
```
14
14
15
15
Which without any additional configuration your App's configured databases will be listed on the home page, including their schemas, tables and any registered [named connections](/ormlite/getting-started#multiple-database-connections):
Create a new [ASP.NET Identity Auth Template](https://servicestack.net/start).
45
+
42
46
### [Profiling & Logging UI](/admin-ui-profiling)
43
47
44
48
Enables invaluable observability into your App, from being able to quickly inspect and browse incoming requests, to tracing their behavior:
@@ -49,6 +53,24 @@ Enables invaluable observability into your App, from being able to quickly inspe
49
53
</div>
50
54
</a>
51
55
56
+
Enable Profiling:
57
+
58
+
:::copy
59
+
x mix profiling
60
+
:::
61
+
62
+
Enable RDBMS Request Logging:
63
+
64
+
:::copy
65
+
x mix db-requestlogs
66
+
:::
67
+
68
+
Enable SQLite Request Logging:
69
+
70
+
:::copy
71
+
x mix sqlitelogs
72
+
:::
73
+
52
74
### [Redis Admin](/admin-ui-redis)
53
75
54
76
Manage your App's configured Redis Server, query & edit core Redis data types and execute custom redis commands:
@@ -59,6 +81,12 @@ Manage your App's configured Redis Server, query & edit core Redis data types an
59
81
</div>
60
82
</a>
61
83
84
+
Quick start:
85
+
86
+
:::copy
87
+
x mix redis
88
+
:::
89
+
62
90
### [Database Admin](/admin-ui-database)
63
91
64
92
Quickly browse and navigate your App's configured RDBMS schemas and tables:
@@ -69,6 +97,12 @@ Quickly browse and navigate your App's configured RDBMS schemas and tables:
69
97
</div>
70
98
</a>
71
99
100
+
Quick start:
101
+
102
+
```csharp
103
+
services.AddPlugin(newAdminDatabaseFeature());
104
+
```
105
+
72
106
### [DB Validation UI](/admin-ui-validation)
73
107
74
108
Leverages the existing Declarative Validation infrastructure to enable dynamically managing Request DTO Type and Property Validators from a RDBMS data source
@@ -79,6 +113,27 @@ Leverages the existing Declarative Validation infrastructure to enable dynamical
79
113
</div>
80
114
</a>
81
115
116
+
Quick start:
117
+
118
+
:::copy
119
+
x mix validation-source
120
+
:::
121
+
122
+
### [AI Chat UI](/ai-chat-analytics)
123
+
124
+
A unified API for integrating multiple local and cloud LLMs into your applications providing financial visibility into your AI operations with interactive visualizations showing spending distribution across providers and models.
0 commit comments