Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
f80ae194
Unverified
Commit
f80ae194
authored
10 months ago
by
bryan
Committed by
GitHub
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
adds diagnostic info to troubleshooting (#42283)
parent
1ff80213
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/public_settings/premium_features.clj
+8
-2
8 additions, 2 deletions
src/metabase/public_settings/premium_features.clj
src/metabase/troubleshooting.clj
+19
-12
19 additions, 12 deletions
src/metabase/troubleshooting.clj
with
27 additions
and
14 deletions
src/metabase/public_settings/premium_features.clj
+
8
−
2
View file @
f80ae194
...
...
@@ -73,7 +73,7 @@
f
:ttl/threshold
(
u/minutes->ms
5
))
lock
(
Object.
)]
(
defn
-
cached-active-users-count
(
defn
cached-active-users-count
"Primarily used for the settings because we don't wish it to be 100%. (HUH?)"
[]
(
locking
lock
...
...
@@ -133,7 +133,7 @@
;;;;;;;;;;;;;;;;;;;; Airgap Tokens ;;;;;;;;;;;;;;;;;;;;
(
declare
decode-airgap-token
)
(
mu/defn
^
:private
max-users-allowed
(
mu/defn
max-users-allowed
"Returns the max users value from an airgapped key, or nil indicating there is no limt."
[]
:-
[
:or
pos-int?
:nil
]
(
when-let
[
token
(
premium-embedding-token
)]
...
...
@@ -254,6 +254,7 @@
:setter
:none
:getter
(
fn
[]
(
some->
(
premium-embedding-token
)
(
fetch-token-status
))))
;;; +----------------------------------------------------------------------------------------------------------------+
;;; | SETTING & RELATED FNS |
;;; +----------------------------------------------------------------------------------------------------------------+
...
...
@@ -281,6 +282,11 @@
{
:message
(
.getMessage
e
)
,
:status-code
400
}
(
ex-data
e
))))))))
; merge in error-details if present
(
defn
is-airgapped?
"Returns true if the current instance is airgapped."
[]
(
mc/validate
AirgapToken
(
premium-embedding-token
)))
(
let
[
cached-logger
(
memoize/ttl
^
{
::memoize/args-fn
(
fn
[[
token
_e
]]
[
token
])}
(
fn
[
_token
e
]
...
...
This diff is collapsed.
Click to expand it.
src/metabase/troubleshooting.clj
+
19
−
12
View file @
f80ae194
...
...
@@ -4,6 +4,7 @@
[
metabase.config
:as
config
]
[
metabase.db
:as
mdb
]
[
metabase.driver
:as
driver
]
[
metabase.public-settings.premium-features
:as
premium-features
]
[
toucan2.core
:as
t2
]))
(
set!
*warn-on-reflection*
true
)
...
...
@@ -28,15 +29,21 @@
(
defn
metabase-info
"Make it easy for the user to tell us what they're using"
[]
{
:databases
(
->>
(
t2/select
'Database
)
(
map
:engine
)
distinct
)
:hosting-env
(
stats/environment-type
)
:application-database
(
mdb/db-type
)
:application-database-details
(
t2/with-connection
[
^
java.sql.Connection
conn
]
(
let
[
metadata
(
.getMetaData
conn
)]
{
:database
{
:name
(
.getDatabaseProductName
metadata
)
:version
(
.getDatabaseProductVersion
metadata
)}
:jdbc-driver
{
:name
(
.getDriverName
metadata
)
:version
(
.getDriverVersion
metadata
)}}))
:run-mode
(
config/config-kw
:mb-run-mode
)
:version
config/mb-version-info
:settings
{
:report-timezone
(
driver/report-timezone
)}})
(
merge
{
:databases
(
->>
(
t2/select
:model/Database
)
(
map
:engine
)
distinct
)
:hosting-env
(
stats/environment-type
)
:application-database
(
mdb/db-type
)
:application-database-details
(
t2/with-connection
[
^
java.sql.Connection
conn
]
(
let
[
metadata
(
.getMetaData
conn
)]
{
:database
{
:name
(
.getDatabaseProductName
metadata
)
:version
(
.getDatabaseProductVersion
metadata
)}
:jdbc-driver
{
:name
(
.getDriverName
metadata
)
:version
(
.getDriverVersion
metadata
)}}))
:run-mode
(
config/config-kw
:mb-run-mode
)
:version
config/mb-version-info
:settings
{
:report-timezone
(
driver/report-timezone
)}}
(
when
(
premium-features/is-airgapped?
)
{
:airgap-token
:enabled
:max-users
(
premium-features/max-users-allowed
)
:current-user-count
(
premium-features/cached-active-users-count
)
:valid-thru
(
some->
(
premium-features/premium-embedding-token
)
premium-features/fetch-token-status
:valid-thru
)})))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment