Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
dd4592a
WIP fleet management documentation
alexnb May 22, 2025
dde4288
WIP fleet management documentation
alexnb May 30, 2025
a6e3407
update
alexnb Jul 21, 2025
a656a95
update
alexnb Aug 20, 2025
b95a086
Reorganize and add more pages
SeBBBe Aug 21, 2025
e4add74
Add setup page
SeBBBe Aug 22, 2025
eae49fb
Document setup steps
SeBBBe Aug 22, 2025
9b31a15
Add overview of procedures
SeBBBe Aug 22, 2025
f63a79e
Inspect pane docs
SeBBBe Aug 22, 2025
8fa524f
Document graph and details
SeBBBe Aug 22, 2025
49f2450
Add screenshot and controls
SeBBBe Aug 22, 2025
8d4c869
Clean up overview page
SeBBBe Aug 22, 2025
58b27a5
Deployment details and doc link
SeBBBe Aug 22, 2025
8cfda52
Add section on security
SeBBBe Aug 25, 2025
e09d2d5
Regenerate data.adoc with pr suggestions
SeBBBe Aug 25, 2025
e12e669
Make type col smaller to fit the field name
SeBBBe Aug 25, 2025
46a9e70
Table formatting
SeBBBe Aug 25, 2025
e5a0f05
Fix broken row
SeBBBe Aug 25, 2025
57057bb
Update modules/ROOT/pages/fleet-management/overview.adoc
SeBBBe Aug 25, 2025
5542b61
Update modules/ROOT/pages/fleet-management/overview.adoc
SeBBBe Aug 25, 2025
df1426e
Update modules/ROOT/pages/fleet-management/overview.adoc
SeBBBe Aug 25, 2025
09ea4c5
Apply suggestions from code review
SeBBBe Aug 25, 2025
ed8b7e1
Fix errors in linking
SeBBBe Aug 25, 2025
c44d78e
Apply suggestions from code review 'graph-view.adoc'
SeBBBe Aug 25, 2025
3c38144
Apply suggestions from code review
SeBBBe Aug 26, 2025
3ac1178
Apply suggestions from code review
SeBBBe Aug 26, 2025
92a592d
Fixup
SeBBBe Aug 26, 2025
267d11a
Apply suggestions from code review
SeBBBe Aug 26, 2025
056e46c
Eliminate most mentions of cluster
SeBBBe Aug 26, 2025
b7a1611
Merge conflicts
SeBBBe Aug 26, 2025
2a52ae1
Add descriptions and some more info on the overview page
SeBBBe Aug 26, 2025
73db7ea
Move the fleet management section up
SeBBBe Aug 26, 2025
2065c06
Update overview ingress
SeBBBe Aug 26, 2025
d105f93
Add info about compatibility and CE
SeBBBe Aug 27, 2025
4d96b20
Slight tweak
SeBBBe Aug 27, 2025
2477a09
Reshuffling
SeBBBe Aug 27, 2025
90924c0
Add some info about active configuration
SeBBBe Aug 27, 2025
1a7f1e7
documented permissions
alexnb Aug 29, 2025
fa53e02
update screenshot to match the UI
alexnb Sep 1, 2025
9d6f505
changes from Jessica
alexnb Sep 1, 2025
077cfb9
changes from Jessica
alexnb Sep 1, 2025
41a974e
add something
AlexicaWright Sep 1, 2025
e8cb800
Merge branch 'console' into alexnb/fleet-management-documentation
alexnb Sep 1, 2025
b8fb7c2
rewrite instance actions
AlexicaWright Sep 2, 2025
e238b0d
typo
AlexicaWright Sep 2, 2025
6962eff
a small rewrite
AlexicaWright Sep 2, 2025
8541bb6
one last thing
AlexicaWright Sep 3, 2025
1143619
edit
AlexicaWright Sep 3, 2025
505a1ed
Merge branch 'console' into alexnb/fleet-management-documentation
AlexicaWright Sep 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ Generic Start

* xref:billing.adoc[Billing]

* Fleet management
* xref:fleet-management/overview.adoc[Overview]

* Connecting applications
** xref:connecting-applications/overview.adoc[Drivers and libraries]
** xref:connecting-applications/query-api.adoc[Using Query API]
Expand Down
307 changes: 307 additions & 0 deletions modules/ROOT/pages/fleet-management/overview.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,307 @@
= Fleet Management Plugin Documentation

This document describes the data structures used in fleet management messages.

== ConnectMessage

Message sent from the server to the Fleet Management service to establish a connection

[cols="1,1,1,1"]
|===
|Field |Type |Description |Values
|serverId
|String
|Unique identifier for the server
|
|name
|String
|Name of the server
|
|dbmsId
|String
|Unique identifier for the DBMS instance
|
|serverVersion
|String
|Version of the server
|
|projectId
|String
|Identifier for the project
|
|buildProfile
|String
|Build profile of the server
|
|===

== MetricsMessage

Message sent from the server to the Fleet Management service containing metrics data

[cols="1,1,1,1"]
|===
|Field |Type |Description |Values
|timestamp
|long
|Unix timestamp in milliseconds when the message was created
|
|projectId
|String
|Identifier for the project
|
|dbmsId
|String
|Unique identifier for the DBMS instance
|
|serverId
|String
|Unique identifier for the server
|
|metrics
|Map<String, List<DataPoint>>
|Map of metric names to lists of DataPoint objects
|Values not yet known.
|metrics<>[].tags
|Map<String, String>
|Map of string key-value pairs providing additional context for the metric
|
|metrics<>[].value
|Double
|Double value representing the metric measurement
|
|===

== ReportingMessage

Message sent from the server to the Fleet Management service containing reporting data

[cols="1,1,1,1"]
|===
|Field |Type |Description |Values
|timestamp
|long
|Unix timestamp in milliseconds when the message was created
|
|projectId
|String
|Identifier for the project
|
|dbms
|Dbms
|DBMS information object
|
|dbms.dbmsId
|String
|Unique identifier for the DBMS instance
|
|dbms.serverId
|String
|Unique identifier for the server
|
|dbms.databases
|List<String>
|List of database names
|
|dbms.edition
|String
|Edition of the DBMS (e.g., Enterprise, Community)
|
|dbms.packaging
|String
|Packaging information of the DBMS
|
|dbms.servers
|List<Server>
|List of servers in the DBMS cluster
|
|dbms.servers[].serverId
|String
|Unique identifier for the server
|
|dbms.servers[].address
|String
|Network address of the server
|
|dbms.servers[].health
|String
|Current health status of the server
|
|dbms.servers[].modeConstraint
|String
|Mode constraint of the server
|
|dbms.servers[].version
|String
|Version of the server software
|
|dbms.servers[].databases
|List<Database>
|List of databases hosted on this server
|
|dbms.servers[].databases[].name
|String
|Name of the database
|
|dbms.servers[].databases[].role
|String
|Role of the database in the cluster
|
|dbms.servers[].databases[].aliases
|List<String>
|List of database aliases
|
|dbms.servers[].databases[].access
|String
|Access level of the database
|
|dbms.servers[].databases[].databaseId
|String
|Unique identifier for the database
|
|dbms.servers[].databases[].requestedStatus
|String
|Requested status of the database
|
|dbms.servers[].databases[].currentStatus
|String
|Current status of the database
|
|dbms.servers[].databases[].statusMessage
|String
|Status message describing the current state
|
|dbms.servers[].databases[]._default
|boolean
|Whether this is the default database
|
|dbms.servers[].databases[].home
|boolean
|Whether this is the home database
|
|dbms.servers[].databases[].currentPrimariesCount
|long
|Current number of primary instances
|
|dbms.servers[].databases[].currentSecondariesCount
|long
|Current number of secondary instances
|
|dbms.servers[].databases[].requestedPrimariesCount
|Integer
|Requested number of primary instances
|
|dbms.servers[].databases[].requestedSecondariesCount
|Integer
|Requested number of secondary instances
|
|dbms.servers[].databases[].creationTime
|long
|Timestamp when the database was created
|
|dbms.servers[].databases[].lastStartTime
|long
|Timestamp when the database was last started
|
|dbms.servers[].databases[].store
|String
|Store information for the database
|
|dbms.servers[].databases[].writer
|boolean
|Whether this instance is a writer
|
|dbms.servers[].databases[].lastCommittedTxn
|Integer
|Last committed transaction ID
|
|dbms.servers[].databases[].replicationLag
|Integer
|Current replication lag
|
|dbms.servers[].license
|License
|Main license information
|
|dbms.servers[].license.type
|String
|Type of the license
|
|dbms.servers[].license.state
|String
|Current state of the license
|
|dbms.servers[].license.daysLeftOnTrial
|Integer
|Number of days remaining in trial period
|
|dbms.servers[].license.totalTrialDays
|Integer
|Total number of days in trial period
|
|dbms.servers[].bloomLicense
|License
|Bloom license information
|
|dbms.servers[].bloomLicense.type
|String
|Type of the license
|
|dbms.servers[].bloomLicense.state
|String
|Current state of the license
|
|dbms.servers[].bloomLicense.daysLeftOnTrial
|Integer
|Number of days remaining in trial period
|
|dbms.servers[].bloomLicense.totalTrialDays
|Integer
|Total number of days in trial period
|
|dbms.servers[].gdsLicense
|License
|GDS license information
|
|dbms.servers[].gdsLicense.type
|String
|Type of the license
|
|dbms.servers[].gdsLicense.state
|String
|Current state of the license
|
|dbms.servers[].gdsLicense.daysLeftOnTrial
|Integer
|Number of days remaining in trial period
|
|dbms.servers[].gdsLicense.totalTrialDays
|Integer
|Total number of days in trial period
|
|pluginVersion
|String
|Version of the fleet management plugin
|
|osName
|String
|Operating system name
|
|osVersion
|String
|Operating system version
|
|osArch
|String
|Operating system architecture
|
|jvmVersion
|String
|Java Virtual Machine version
|
|jvmVendor
|String
|Java Virtual Machine vendor
|
|===