Documentation
¶
Index ¶
- Constants
- func FindInstances(fs afero.Fs, sapPath string) ([][]string, error)
- func FindProfiles(fs afero.Fs, sid string) ([]string, error)
- func FindSystems(fs afero.Fs) ([]string, error)
- func GetProfileData(fs afero.Fs, profilePath string) (map[string]string, error)
- func Md5sum(data string) string
- type DatabaseData
- type HdbnsutilSRstate
- type HostConfiguration
- type SAPControl
- type SAPInstance
- type SAPProfile
- type SAPSystem
- type SAPSystemsList
- type SAPSystemsMap
- type SystemReplication
- type SystemType
Constants ¶
const (
SapDefaultProfile string = "DEFAULT.PFL"
)
Variables ¶
This section is empty.
Functions ¶
func FindInstances ¶
FindInstances returns the installed SAP instances in the /usr/sap/${SID} folder It returns a list with [instanceName, instanceNumber] combination
func FindProfiles ¶
FindProfiles returns the latest profile file names in the /sapmnt/${SID}/folder folder
func FindSystems ¶
FindSystems returns the installed SAP systems in the /usr/sap folder It returns the list of found SAP system paths
func GetProfileData ¶
GetProfileData returns the SAP profile file content
Types ¶
type DatabaseData ¶
type DatabaseData struct { Database string Container string User string Group string UserID string `json:"UserId"` GroupID string `json:"GroupId"` Host string SQLPort string `json:"SqlPort"` Active string }
func GetDatabases ¶
func GetDatabases(fs afero.Fs, sid string) ([]*DatabaseData, error)
The content type of the databases.lst looks like # DATABASE:CONTAINER:USER:GROUP:USERID:GROUPID:HOST:SQLPORT:ACTIVE PRD::::::hana02:30015:yes DEV::::::hana02:30044:yes
type HdbnsutilSRstate ¶
type HdbnsutilSRstate map[string]interface{}
type HostConfiguration ¶
type HostConfiguration map[string]interface{}
type SAPControl ¶
type SAPControl struct { Processes []*sapcontrol.OSProcess Instances []*sapcontrol.SAPInstance Properties []*sapcontrol.InstanceProperty }
func NewSAPControl ¶
func NewSAPControl(ctx context.Context, w sapcontrol.WebService) (*SAPControl, error)
type SAPInstance ¶
type SAPInstance struct { Name string Type SystemType Host string SAPControl *SAPControl // Only for Database type SystemReplication SystemReplication HostConfiguration HostConfiguration HdbnsutilSRstate HdbnsutilSRstate }
func NewSAPInstance ¶
func NewSAPInstance( ctx context.Context, w sapcontrolapi.WebService, executor utils.CommandExecutor, ) (*SAPInstance, error)
type SAPProfile ¶
type SAPSystem ¶
type SAPSystem struct { ID string `json:"Id"` SID string Type SystemType Profile SAPProfile Instances []*SAPInstance // Only for Database type Databases []*DatabaseData // Only for Application type DBAddress string }
A SAPSystem in this context is a SAP installation under one SID. It will have application or database type, mutually exclusive The Id parameter is not yet implemented
func NewSAPSystem ¶
func NewSAPSystem( ctx context.Context, fs afero.Fs, executor utils.CommandExecutor, webService sapcontrolapi.WebServiceConnector, sysPath string, ) (*SAPSystem, error)
func (*SAPSystem) GetDBAddress ¶
type SAPSystemsList ¶
type SAPSystemsList []*SAPSystem
func NewDefaultSAPSystemsList ¶
func NewDefaultSAPSystemsList(ctx context.Context) (SAPSystemsList, error)
func NewSAPSystemsList ¶
func NewSAPSystemsList( ctx context.Context, fs afero.Fs, executor utils.CommandExecutor, webService sapcontrolapi.WebServiceConnector, ) (SAPSystemsList, error)
func (SAPSystemsList) GetSIDsString ¶
func (sl SAPSystemsList) GetSIDsString() string
type SAPSystemsMap ¶
type SystemReplication ¶
type SystemReplication map[string]interface{}
type SystemType ¶
type SystemType int
const ( Unknown SystemType = iota Database Application DiagnosticsAgent )