Documentation ¶
Index ¶
- Constants
- Variables
- func CertificatesExist() bool
- func CreateLocalDbConnection(ctx context.Context, opts *CreateDbOptions) (*pgx.Conn, error)
- func EnsureDBInstalled(ctx context.Context) (err error)
- func FindAllSteampipePostgresInstances(ctx context.Context) ([]*psutils.Process, error)
- func IsInstalled() bool
- func RefreshConnectionAndSearchPaths(ctx context.Context, forceUpdateConnectionNames ...string) *steampipeconfig.RefreshConnectionResult
- func RemoveAllCertificates() error
- func RemoveServerCertificate() error
- func ServiceExecutableRelativeLocation() string
- func ShutdownService(ctx context.Context, invoker constants.Invoker)
- func TrimLogs()
- func ValidateRootCertificate() bool
- func ValidateServerCertificate() bool
- type ClientCount
- type CreateDbOptions
- type LocalDbClient
- type Passwords
- type RunningDBInstanceInfo
- type StartDbStatus
- type StartListenType
- type StartResult
- type StopStatus
Constants ¶
const CertIssuer = "steampipe.io"
const RunningDBStructVersion = 20220411
Variables ¶
Functions ¶
func CertificatesExist ¶
func CertificatesExist() bool
CertificatesExist checks if the root and server certificate and key files exist
func CreateLocalDbConnection ¶ added in v0.19.0
func CreateLocalDbConnection(ctx context.Context, opts *CreateDbOptions) (*pgx.Conn, error)
CreateLocalDbConnection connects and returns a connection to the given database using the provided username if the database is not provided (empty), it connects to the default database in the service that was created during installation. NOTE: no session data callback is used - no session data will be present
func EnsureDBInstalled ¶
EnsureDBInstalled makes sure that the embedded pg database is installed and running
func IsInstalled ¶
func IsInstalled() bool
IsInstalled checks and reports whether the embedded database is installed and setup
func RefreshConnectionAndSearchPaths ¶
func RefreshConnectionAndSearchPaths(ctx context.Context, forceUpdateConnectionNames ...string) *steampipeconfig.RefreshConnectionResult
func RemoveAllCertificates ¶
func RemoveAllCertificates() error
RemoveAllCertificates removes root and server certificates so that they can be regenerated
func RemoveServerCertificate ¶
func RemoveServerCertificate() error
RemoveServerCertificate removes the server certificate certificates so it will be regenerated
func ServiceExecutableRelativeLocation ¶
func ServiceExecutableRelativeLocation() string
func ShutdownService ¶
ShutdownService stops the database instance if the given 'invoker' matches
func ValidateRootCertificate ¶
func ValidateRootCertificate() bool
ValidateRootCertificate checks the root certificate exists, is not expired and has correct Subject
func ValidateServerCertificate ¶
func ValidateServerCertificate() bool
ValidateServerCertificate checks the server certificate exists, is not expired and has correct issuer
Types ¶
type ClientCount ¶ added in v0.19.0
func GetClientCount ¶ added in v0.19.0
func GetClientCount(ctx context.Context) (*ClientCount, error)
GetClientCount returns the number of connections to the service from anyone other than _this_execution_ of steampipe
We assume that any connections from this execution will eventually be closed - if there are any other external connections, we cannot shut down the database
this is to handle cases where either a third party tool is connected to the database, or other Steampipe sessions are attached to an already running Steampipe service - we do not want the db service being closed underneath them
note: we need the PgClientAppName check to handle the case where there may be one or more open DB connections from this instance at the time of shutdown - for example when a control run is cancelled If we do not exclude connections from this execution, the DB will not be shut down after a cancellation
type CreateDbOptions ¶
type CreateDbOptions struct {
DatabaseName, Username string
}
type LocalDbClient ¶
LocalDbClient wraps over DbClient
func GetLocalClient ¶
func GetLocalClient(ctx context.Context, invoker constants.Invoker, onConnectionCallback db_client.DbConnectionCallback) (*LocalDbClient, *modconfig.ErrorAndWarnings)
GetLocalClient starts service if needed and creates a new LocalDbClient
func (*LocalDbClient) Close ¶
func (c *LocalDbClient) Close(ctx context.Context) error
Close implements Client close the connection to the database and shuts down the db service if we are the last connection
func (*LocalDbClient) GetSchemaFromDB ¶
func (c *LocalDbClient) GetSchemaFromDB(ctx context.Context, schemas ...string) (*schema.Metadata, error)
GetSchemaFromDB for LocalDBClient optimises the schema extraction by extracting schema information for connections backed by distinct plugins and then fanning back out. NOTE: we can only do this optimisation for a LOCAL db connection as we have access to connection config
type RunningDBInstanceInfo ¶
type RunningDBInstanceInfo struct { Pid int `json:"pid"` Port int `json:"port"` Listen []string `json:"listen"` ListenType StartListenType `json:"listen_type"` Invoker constants.Invoker `json:"invoker"` Password string `json:"password"` User string `json:"user"` Database string `json:"database"` StructVersion int64 `json:"struct_version"` }
RunningDBInstanceInfo contains data about the running process and it's credentials
func GetState ¶
func GetState() (*RunningDBInstanceInfo, error)
GetState checks that the database instance is running and returns its details
func (*RunningDBInstanceInfo) Save ¶
func (r *RunningDBInstanceInfo) Save() error
func (*RunningDBInstanceInfo) String ¶
func (r *RunningDBInstanceInfo) String() string
type StartDbStatus ¶
type StartDbStatus int
StartDbStatus is a pseudoEnum for outcomes of starting the db
const ( // start from 1 to prevent confusion with int zero-value ServiceStarted StartDbStatus = iota + 1 ServiceAlreadyRunning ServiceFailedToStart )
type StartListenType ¶
type StartListenType string
StartListenType is a pseudoEnum of network binding for postgres
const ( // ListenTypeNetwork - bind to all known interfaces ListenTypeNetwork StartListenType = "network" // ListenTypeLocal - bind to localhost only ListenTypeLocal = "local" )
func (StartListenType) IsValid ¶
func (slt StartListenType) IsValid() error
IsValid is a validator for StartListenType known values
type StartResult ¶
type StartResult struct { modconfig.ErrorAndWarnings Status StartDbStatus DbState *RunningDBInstanceInfo PluginManagerState *pluginmanager.PluginManagerState }
StartResult is a pseudoEnum for outcomes of StartNewInstance
func StartServices ¶
func StartServices(ctx context.Context, port int, listen StartListenType, invoker constants.Invoker) *StartResult
func (*StartResult) SetError ¶
func (r *StartResult) SetError(err error) *StartResult
type StopStatus ¶
type StopStatus int
StopStatus is a pseudoEnum for service stop result
const ( // start from 1 to prevent confusion with int zero-value ServiceStopped StopStatus = iota + 1 ServiceNotRunning ServiceStopFailed ServiceStopTimedOut )
func StopServices ¶
func StopServices(ctx context.Context, force bool, invoker constants.Invoker) (status StopStatus, e error)
StopServices searches for and stops the running instance. Does nothing if an instance was not found