core

package
v0.80.66 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 23, 2019 License: GPL-3.0 Imports: 28 Imported by: 0

Documentation

Overview

Package core contains the main functionality of Statping. This includes everything for Services, Hits, Failures, Users, service checking mechanisms, databases, and notifiers in the notifier package

More info on: https://github.com/hunterlong/statping

Index

Constants

This section is empty.

Variables

View Source
var (
	Configs   *DbConfig // Configs holds all of the config.yml and database info
	CoreApp   *Core     // CoreApp is a global variable that contains many elements
	SetupMode bool      // SetupMode will be true if Statping does not have a database connection
	VERSION   string    // VERSION is set on build automatically by setting a -ldflag
)
View Source
var (
	// DbSession stores the Statping database session
	DbSession *gorm.DB
	DbModels  []interface{}
)
View Source
var (
	SampleHits = 9900.
)

Functions

func AttachNotifiers added in v0.80.65

func AttachNotifiers() error

AttachNotifiers will attach all the notifier's into the system

func CheckHash

func CheckHash(password, hash string) bool

CheckHash returns true if the password matches with a hashed bcrypt password

func CloseDB added in v0.79.1

func CloseDB()

CloseDB will close the database connection if available

func CountFailures

func CountFailures() uint64

CountFailures returns the total count of failures for all services

func CountUsers added in v0.79.7

func CountUsers() int64

CountUsers returns the amount of users

func DatabaseMaintence

func DatabaseMaintence()

DatabaseMaintence will automatically delete old records from 'failures' and 'hits' this function is currently set to delete records 7+ days old every 60 minutes

func Dbtimestamp added in v0.79.1

func Dbtimestamp(group string, column string) string

Dbtimestamp will return a SQL query for grouping by date

func DefaultPort added in v0.79.1

func DefaultPort(db string) int64

DefaultPort accepts a database type and returns its default port

func DeleteAllSince

func DeleteAllSince(table string, date time.Time)

DeleteAllSince will delete a specific table's records based on a time.

func DeleteConfig

func DeleteConfig() error

DeleteConfig will delete the 'config.yml' file

func ExportChartsJs added in v0.79.1

func ExportChartsJs() string

ExportChartsJs renders the charts for the index page

func ExportSettings added in v0.79.9

func ExportSettings() ([]byte, error)

ExportSettings will export a JSON file containing all of the settings below: - Core - Notifiers - Checkins - Users - Services - Groups - Messages

func GetLocalIP added in v0.79.9

func GetLocalIP() string

GetLocalIP returns the non loopback local IP of the host

func InitApp added in v0.28.6

func InitApp()

InitApp will initialize Statping

func InsertLargeSampleData added in v0.79.1

func InsertLargeSampleData() error

InsertLargeSampleData will create the example/dummy services for testing the Statping server

func InsertNotifierDB added in v0.79.1

func InsertNotifierDB() error

InsertNotifierDB inject the Statping database instance to the Notifier package

func InsertSampleData added in v0.79.1

func InsertSampleData() error

InsertSampleData will create the example/dummy services for a brand new Statping installation

func InsertSampleHits added in v0.79.1

func InsertSampleHits() error

InsertSampleHits will create a couple new hits for the sample services

func SampleData added in v0.79.1

func SampleData() error

SampleData runs all the sample data for a new Statping installation

func Services added in v0.79.1

func Services() []types.ServiceInterface

Types

type Checkin

type Checkin struct {
	*types.Checkin
}

func AllCheckins added in v0.79.9

func AllCheckins() []*Checkin

AllCheckins returns all checkin in system

func ReturnCheckin added in v0.79.1

func ReturnCheckin(c *types.Checkin) *Checkin

ReturnCheckin converts *types.Checking to *core.Checkin

func SelectCheckin added in v0.79.1

func SelectCheckin(api string) *Checkin

SelectCheckin will find a Checkin based on the API supplied

func (*Checkin) AfterFind added in v0.79.1

func (c *Checkin) AfterFind() (err error)

AfterFind for Checkin will set the timezone

func (*Checkin) AllFailures added in v0.79.9

func (c *Checkin) AllFailures() []*types.Failure

Hits returns all of the CheckinHits for a given Checkin

func (*Checkin) AllHits added in v0.79.9

func (c *Checkin) AllHits() []*types.CheckinHit

AllHits returns all of the CheckinHits for a given Checkin

func (*Checkin) Create

func (c *Checkin) Create() (int64, error)

Create will create a new Checkin

func (*Checkin) CreateFailure

func (c *Checkin) CreateFailure() (int64, error)

func (*Checkin) Delete added in v0.79.1

func (c *Checkin) Delete() error

Create will create a new Checkin

func (*Checkin) Expected added in v0.79.1

func (c *Checkin) Expected() time.Duration

Expected returns the duration of when the serviec should receive a Checkin

func (*Checkin) Grace added in v0.79.1

func (c *Checkin) Grace() time.Duration

Grace will return the duration of the Checkin Grace Period (after service hasn't responded, wait a bit for a response)

func (*Checkin) Last added in v0.79.1

func (c *Checkin) Last() *CheckinHit

Last returns the last checkinHit for a Checkin

func (*Checkin) LimitedFailures added in v0.79.98

func (c *Checkin) LimitedFailures(amount int64) []types.FailureInterface

Hits returns all of the CheckinHits for a given Checkin

func (*Checkin) LimitedHits added in v0.79.98

func (c *Checkin) LimitedHits(amount int64) []*types.CheckinHit

LimitedHits will return the last amount of successful hits from a checkin

func (c *Checkin) Link() string

func (*Checkin) Period added in v0.79.1

func (c *Checkin) Period() time.Duration

Period will return the duration of the Checkin interval

func (*Checkin) RecheckCheckinFailure

func (c *Checkin) RecheckCheckinFailure(guard chan struct{})

RecheckCheckinFailure will check if a Service Checkin has been reported yet

func (*Checkin) Routine added in v0.79.1

func (c *Checkin) Routine()

Routine for checking if the last Checkin was within its interval

func (*Checkin) Select added in v0.79.98

func (c *Checkin) Select() *types.Checkin

Select returns a *types.Checkin

func (*Checkin) Service added in v0.79.1

func (c *Checkin) Service() *Service

func (*Checkin) String

func (c *Checkin) String() string

String will return a Checkin API string

func (*Checkin) Update added in v0.79.1

func (c *Checkin) Update() (int64, error)

Update will update a Checkin

type CheckinHit added in v0.79.9

type CheckinHit struct {
	*types.CheckinHit
}

func ReturnCheckinHit added in v0.79.1

func ReturnCheckinHit(c *types.CheckinHit) *CheckinHit

ReturnCheckinHit converts *types.checkinHit to *core.checkinHit

func (*CheckinHit) AfterFind added in v0.79.9

func (c *CheckinHit) AfterFind() (err error)

AfterFind for checkinHit will set the timezone

func (*CheckinHit) Ago added in v0.79.9

func (c *CheckinHit) Ago() string

Ago returns the duration of time between now and the last successful checkinHit

func (*CheckinHit) Create added in v0.79.9

func (c *CheckinHit) Create() (int64, error)

Create will create a new successful checkinHit

type Core

type Core struct {
	*types.Core
}

func NewCore added in v0.29.1

func NewCore() *Core

NewCore return a new *core.Core struct

func SelectCore

func SelectCore() (*Core, error)

SelectCore will return the CoreApp global variable and the settings/configs for Statping

func UpdateCore added in v0.79.1

func UpdateCore(c *Core) (*Core, error)

UpdateCore will update the CoreApp variable inside of the 'core' table in database

func (*Core) AfterFind added in v0.79.9

func (c *Core) AfterFind() (err error)

AfterFind for Core will set the timezone

func (Core) AllOnline

func (c Core) AllOnline() bool

AllOnline will be true if all services are online

func (Core) BaseSASS

func (c Core) BaseSASS() string

BaseSASS is the base design , this opens the file /assets/scss/base.scss to be edited in Theme

func (*Core) Count24HFailures added in v0.79.1

func (c *Core) Count24HFailures() uint64

Count24HFailures returns the amount of failures for a service within the last 24 hours

func (*Core) CountOnline added in v0.79.1

func (c *Core) CountOnline() int

CountOnline returns the amount of services online

func (Core) CurrentTime added in v0.79.1

func (c Core) CurrentTime() string

CurrentTime will return the current local time

func (Core) Messages added in v0.79.9

func (c Core) Messages() []*Message

Messages will return the current local time

func (Core) MobileSASS added in v0.28.5

func (c Core) MobileSASS() string

MobileSASS is the -webkit responsive custom css designs. This opens the file /assets/scss/mobile.scss to be edited in Theme

func (Core) SassVars

func (c Core) SassVars() string

SassVars opens the file /assets/scss/variables.scss to be edited in Theme

func (*Core) SelectAllServices added in v0.79.1

func (c *Core) SelectAllServices(start bool) ([]*Service, error)

SelectAllServices returns a slice of *core.Service to be store on []*core.Services, should only be called once on startup.

func (*Core) ToCore added in v0.79.1

func (c *Core) ToCore() *types.Core

ToCore will convert *core.Core to *types.Core

func (Core) UsingAssets

func (c Core) UsingAssets() bool

UsingAssets will return true if /assets folder is present

type DateScan

type DateScan struct {
	CreatedAt string `json:"x,omitempty"`
	Value     int64  `json:"y"`
}

DateScan struct is for creating the charts.js graph JSON array

type DateScanObj added in v0.79.1

type DateScanObj struct {
	Array []DateScan `json:"data"`
}

DateScanObj struct is for creating the charts.js graph JSON array

func GraphDataRaw added in v0.79.1

func GraphDataRaw(service types.ServiceInterface, start, end time.Time, group string, column string) *DateScanObj

GraphDataRaw will return all the hits between 2 times for a Service

func (*DateScanObj) ToString added in v0.79.1

func (d *DateScanObj) ToString() string

ToString will convert the DateScanObj into a JSON string for the charts to render

type DbConfig

type DbConfig types.DbConfig

DbConfig stores the config.yml file for the statup configuration

func EnvToConfig added in v0.79.1

func EnvToConfig() (*DbConfig, error)

EnvToConfig converts environment variables to a DbConfig variable

func LoadConfigFile added in v0.79.1

func LoadConfigFile(directory string) (*DbConfig, error)

LoadConfigFile will attempt to load the 'config.yml' file in a specific directory

func LoadUsingEnv added in v0.29.7

func LoadUsingEnv() (*DbConfig, error)

LoadUsingEnv will attempt to load database configs based on environment variables. If DB_CONN is set if will force this function.

func (*DbConfig) Connect added in v0.79.1

func (db *DbConfig) Connect(retry bool, location string) error

Connect will attempt to connect to the sqlite, postgres, or mysql database

func (*DbConfig) CreateCore added in v0.79.1

func (c *DbConfig) CreateCore() *Core

CreateCore will initialize the global variable 'CoreApp". This global variable contains most of Statping app.

func (*DbConfig) CreateDatabase added in v0.79.1

func (db *DbConfig) CreateDatabase() error

CreateDatabase will CREATE TABLES for each of the Statping elements

func (*DbConfig) DropDatabase added in v0.79.1

func (db *DbConfig) DropDatabase() error

DropDatabase will DROP each table Statping created

func (*DbConfig) InsertCore added in v0.79.1

func (db *DbConfig) InsertCore() (*Core, error)

InsertCore create the single row for the Core settings in Statping

func (*DbConfig) MigrateDatabase added in v0.79.1

func (db *DbConfig) MigrateDatabase() error

MigrateDatabase will migrate the database structure to current version. This function will NOT remove previous records, tables or columns from the database. If this function has an issue, it will ROLLBACK to the previous state.

func (*DbConfig) Save

func (db *DbConfig) Save() (*DbConfig, error)

Save will initially create the config.yml file

func (*DbConfig) Update added in v0.79.1

func (db *DbConfig) Update() error

Update will save the config.yml file

type ErrorResponse

type ErrorResponse struct {
	Error string
}

ErrorResponse is used for HTTP errors to show to User

type ExportData added in v0.79.9

type ExportData struct {
	Core      *types.Core              `json:"core"`
	Services  []types.ServiceInterface `json:"services"`
	Messages  []*Message               `json:"messages"`
	Checkins  []*Checkin               `json:"checkins"`
	Users     []*User                  `json:"users"`
	Groups    []*Group                 `json:"groups"`
	Notifiers []types.AllNotifiers     `json:"notifiers"`
}

type Failure

type Failure struct {
	*types.Failure
}

func (*Failure) AfterFind added in v0.79.98

func (f *Failure) AfterFind() (err error)

AfterFind for Failure will set the timezone

func (*Failure) Ago

func (f *Failure) Ago() string

Ago returns a human readable timestamp for a Failure

func (*Failure) Delete

func (f *Failure) Delete() error

Delete will remove a Failure record from the database

func (*Failure) ParseError

func (f *Failure) ParseError() string

ParseError returns a human readable error for a Failure

func (*Failure) Select added in v0.79.98

func (f *Failure) Select() *types.Failure

Select returns a *types.Failure

type Group added in v0.80.5

type Group struct {
	*types.Group
}

func SelectGroup added in v0.80.5

func SelectGroup(id int64) *Group

SelectGroup returns a *core.Group

func SelectGroups added in v0.80.5

func SelectGroups(includeAll bool, auth bool) []*Group

SelectGroups returns all groups

func (*Group) Create added in v0.80.5

func (g *Group) Create() (int64, error)

Create will create a group and insert it into the database

func (*Group) Delete added in v0.80.5

func (g *Group) Delete() error

Delete will remove a group

func (*Group) Services added in v0.80.5

func (g *Group) Services() []*Service

Services returns all services belonging to a group

func (*Group) Update added in v0.80.5

func (g *Group) Update() (int64, error)

Update will update a group

func (*Group) VisibleServices added in v0.80.56

func (g *Group) VisibleServices(auth bool) []*Service

VisibleServices returns all services based on authentication

type GroupOrder added in v0.80.5

type GroupOrder []*Group

GroupOrder will reorder the groups based on 'order_id' (Order)

func (GroupOrder) Len added in v0.80.5

func (c GroupOrder) Len() int

Sort interface for resorting the Groups in order

func (GroupOrder) Less added in v0.80.5

func (c GroupOrder) Less(i, j int) bool

func (GroupOrder) Swap added in v0.80.5

func (c GroupOrder) Swap(i, j int)

type Hit

type Hit struct {
	*types.Hit
}

func (*Hit) AfterFind added in v0.79.8

func (h *Hit) AfterFind() (err error)

AfterFind for Hit will set the timezone

type Incident added in v0.80.63

type Incident struct {
	*types.Incident
}

func AllIncidents added in v0.80.63

func AllIncidents() []*Incident

AllIncidents will return all incidents and updates recorded

func (*Incident) AllUpdates added in v0.80.63

func (i *Incident) AllUpdates() []*IncidentUpdate

AllUpdates will return the all updates for an incident

func (*Incident) Create added in v0.80.63

func (i *Incident) Create() (int64, error)

Create will create a incident and insert it into the database

func (*Incident) Delete added in v0.80.63

func (i *Incident) Delete() error

Delete will remove a incident

func (*Incident) Update added in v0.80.63

func (i *Incident) Update() (int64, error)

Update will update a incident

type IncidentUpdate added in v0.80.63

type IncidentUpdate struct {
	*types.IncidentUpdate
}

func (*IncidentUpdate) Create added in v0.80.63

func (i *IncidentUpdate) Create() (int64, error)

Create will create a incident update and insert it into the database

func (*IncidentUpdate) Delete added in v0.80.63

func (i *IncidentUpdate) Delete() error

Delete will remove a incident update

type Message added in v0.79.4

type Message struct {
	*types.Message
}

func ReturnMessage added in v0.79.4

func ReturnMessage(m *types.Message) *Message

ReturnMessage will convert *types.Message to *core.Message

func SelectMessage added in v0.79.4

func SelectMessage(id int64) (*Message, error)

SelectMessage returns a Message based on the ID passed

func SelectMessages added in v0.79.4

func SelectMessages() ([]*Message, error)

SelectMessages returns all messages

func SelectServiceMessages added in v0.79.4

func SelectServiceMessages(id int64) []*Message

SelectServiceMessages returns all messages for a service

func (*Message) AfterFind added in v0.79.9

func (u *Message) AfterFind() (err error)

AfterFind for Message will set the timezone

func (*Message) Create added in v0.79.4

func (m *Message) Create() (int64, error)

Create will create a Message and insert it into the database

func (*Message) Delete added in v0.79.4

func (m *Message) Delete() error

Delete will delete a Message from database

func (*Message) Service added in v0.79.4

func (m *Message) Service() *Service

func (*Message) Update added in v0.79.4

func (m *Message) Update() (*Message, error)

Update will update a Message in the database

type PluginJSON

type PluginJSON types.PluginJSON

type PluginRepos

type PluginRepos types.PluginRepos

type Service

type Service struct {
	*types.Service
}

func ReturnService added in v0.79.1

func ReturnService(s *types.Service) *Service

ReturnService will convert *types.Service to *core.Service

func SelectService

func SelectService(id int64) *Service

SelectService returns a *core.Service from in memory

func SelectServiceLink(permalink string) *Service

SelectServiceLink returns a *core.Service from the service permalink

func SelectServices added in v0.80.56

func SelectServices(auth bool) []*Service

func (*Service) ActiveMessages added in v0.79.4

func (s *Service) ActiveMessages() []*Message

ActiveMessages returns all service messages that are available based on the current time

func (*Service) AfterFind added in v0.79.1

func (s *Service) AfterFind() (err error)

AfterFind for Service will set the timezone

func (*Service) AllCheckins added in v0.79.98

func (s *Service) AllCheckins() []*Checkin

AllCheckins will return a slice of AllCheckins for a Service

func (*Service) AllFailures added in v0.79.1

func (s *Service) AllFailures() []*Failure

AllFailures will return all failures attached to a service

func (*Service) AvgTime

func (s *Service) AvgTime() string

AvgTime will return the average amount of time for a service to response back successfully

func (*Service) AvgUptime

func (s *Service) AvgUptime(ago time.Time) string

AvgUptime returns average online status for last 24 hours

func (*Service) AvgUptime24 added in v0.79.1

func (s *Service) AvgUptime24() string

AvgUptime24 returns a service's average online status for last 24 hours

func (*Service) Check

func (s *Service) Check(record bool)

Check will run checkHttp for HTTP services and checkTcp for TCP services if record param is set to true, it will add a record into the database.

func (*Service) CheckQueue

func (s *Service) CheckQueue(record bool)

CheckQueue is the main go routine for checking a service

func (*Service) CheckinProcess added in v0.79.1

func (s *Service) CheckinProcess()

CheckinProcess runs the checkin routine for each checkin attached to service

func (*Service) CountHits added in v0.79.1

func (s *Service) CountHits() (int64, error)

CountHits returns a int64 for all hits for a service

func (*Service) Create

func (s *Service) Create(check bool) (int64, error)

Create will create a service and insert it into the database

func (*Service) CreateFailure

func (s *Service) CreateFailure(fail types.FailureInterface) (int64, error)

CreateFailure will create a new Failure record for a service

func (*Service) CreateHit

func (s *Service) CreateHit(h *types.Hit) (int64, error)

CreateHit will create a new 'hit' record in the database for a successful/online service

func (*Service) Delete

func (s *Service) Delete() error

Delete will remove a service from the database, it will also end the service checking go routine

func (*Service) DeleteFailures

func (s *Service) DeleteFailures()

DeleteFailures will delete all failures for a service

func (*Service) Downtime added in v0.79.1

func (s *Service) Downtime() time.Duration

Downtime returns the amount of time of a offline service

func (*Service) DowntimeText added in v0.79.1

func (s *Service) DowntimeText() string

DowntimeText will return the amount of downtime for a service based on the duration

service.DowntimeText()
// Service has been offline for 15 minutes

func (*Service) FailuresDaysAgo added in v0.80.5

func (s *Service) FailuresDaysAgo(days int) uint64

FailuresDaysAgo returns the amount of failures since days ago

func (*Service) Hits

func (s *Service) Hits() ([]*types.Hit, error)

Hits returns all successful hits for a service

func (*Service) HitsBetween added in v0.79.1

func (s *Service) HitsBetween(t1, t2 time.Time, group string, column string) *gorm.DB

HitsBetween returns the gorm database query for a collection of service hits between a time range

func (*Service) Incidents added in v0.80.63

func (s *Service) Incidents() []*Incident

Incidents will return the all incidents for a service

func (*Service) LimitedCheckinFailures added in v0.79.91

func (s *Service) LimitedCheckinFailures(amount int64) []*Failure

LimitedFailures will return the last amount of failures from a service

func (*Service) LimitedFailures

func (s *Service) LimitedFailures(amount int64) []*Failure

LimitedFailures will return the last amount of failures from a service

func (*Service) LimitedHits

func (s *Service) LimitedHits(amount int64) ([]*types.Hit, error)

LimitedHits returns the last 1024 successful/online 'hit' records for a service

func (*Service) Messages added in v0.79.4

func (s *Service) Messages() []*Message

Messages returns all Messages for a Service

func (*Service) OnlineDaysPercent added in v0.80.5

func (s *Service) OnlineDaysPercent(days int) float32

OnlineDaysPercent returns the service's uptime percent within last 24 hours

func (*Service) OnlineSince added in v0.79.1

func (s *Service) OnlineSince(ago time.Time) float32

OnlineSince accepts a time since parameter to return the percent of a service's uptime.

func (*Service) Select added in v0.79.1

func (s *Service) Select() *types.Service

Select will return the *types.Service struct for Service

func (*Service) SmallText added in v0.27.9

func (s *Service) SmallText() string

SmallText returns a short description about a services status

service.SmallText()
// Online since Monday 3:04:05PM, Jan _2 2006

func (*Service) SparklineDayFailures added in v0.80.5

func (s *Service) SparklineDayFailures(days int) string

SparklineDayFailures returns a string array of daily service failures

func (*Service) SparklineHourResponse added in v0.80.5

func (s *Service) SparklineHourResponse(hours int, method string) string

SparklineHourResponse returns a string array for the average response or ping time for a service

func (*Service) Sum

func (s *Service) Sum() float64

Sum returns the added value Latency for all of the services successful hits.

func (*Service) TotalFailures

func (s *Service) TotalFailures() (uint64, error)

TotalFailures returns the total amount of failures for a service

func (*Service) TotalFailures24 added in v0.79.1

func (s *Service) TotalFailures24() (uint64, error)

TotalFailures24 returns the amount of failures for a service within the last 24 hours

func (*Service) TotalFailuresOnDate added in v0.80.5

func (s *Service) TotalFailuresOnDate(ago time.Time) (uint64, error)

TotalFailuresOnDate returns the total amount of failures for a service on a specific time/date

func (*Service) TotalFailuresSince added in v0.79.1

func (s *Service) TotalFailuresSince(ago time.Time) (uint64, error)

TotalFailuresSince returns the total amount of failures for a service since a specific time/date

func (*Service) TotalHits

func (s *Service) TotalHits() (uint64, error)

TotalHits returns the total amount of successful hits a service has

func (*Service) TotalHitsSince added in v0.79.1

func (s *Service) TotalHitsSince(ago time.Time) (uint64, error)

TotalHitsSince returns the total amount of hits based on a specific time/date

func (*Service) TotalUptime

func (s *Service) TotalUptime() string

TotalUptime returns the total uptime percent of a service

func (*Service) Update

func (s *Service) Update(restart bool) error

Update will update a service in the database, the service's checking routine can be restarted by passing true

type ServiceOrder added in v0.79.1

type ServiceOrder []types.ServiceInterface

ServiceOrder will reorder the services based on 'order_id' (Order)

func (ServiceOrder) Len added in v0.79.1

func (c ServiceOrder) Len() int

Sort interface for resroting the Services in order

func (ServiceOrder) Less added in v0.79.1

func (c ServiceOrder) Less(i, j int) bool

func (ServiceOrder) Swap added in v0.79.1

func (c ServiceOrder) Swap(i, j int)

type User

type User struct {
	*types.User
}

func AuthUser

func AuthUser(username, password string) (*User, bool)

AuthUser will return the User and a boolean if authentication was correct. AuthUser accepts username, and password as a string

func ReturnUser added in v0.79.1

func ReturnUser(u *types.User) *User

ReturnUser returns *core.User based off a *types.User

func SelectAllUsers

func SelectAllUsers() ([]*User, error)

SelectAllUsers returns all users

func SelectUser

func SelectUser(id int64) (*User, error)

SelectUser returns the User based on the User's ID.

func SelectUsername

func SelectUsername(username string) (*User, error)

SelectUsername returns the User based on the User's username

func (*User) AfterFind added in v0.79.9

func (u *User) AfterFind() (err error)

AfterFind for USer will set the timezone

func (*User) Create

func (u *User) Create() (int64, error)

Create will insert a new User into the database

func (*User) Delete

func (u *User) Delete() error

Delete will remove the User record from the database

func (*User) Update added in v0.29.8

func (u *User) Update() error

Update will update the User's record in database

Directories

Path Synopsis
Package notifier contains the main functionality for the Statping Notification system Example Notifier Below is an example of a Notifier with multiple Form values to custom your inputs.
Package notifier contains the main functionality for the Statping Notification system Example Notifier Below is an example of a Notifier with multiple Form values to custom your inputs.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL