sla.create

Description

object sla.create(object/array SLAs)

This method allows to create new SLA objects.

This method is only available to Admin and Super admin user types. Permissions to call the method can be revoked in user role settings. See User roles for more information.

Parameters

(object/array) SLA objects to create.

Additionally to the standard SLA properties, the method accepts the following parameters.

Parameter Type Description
service_tags array SLA service tags to be created for the SLA.

Parameter behavior:
- required
schedule array SLA schedule to be created for the SLA.
Specifying an empty parameter will be interpreted as a 24x7 schedule.
Default: 24x7 schedule.
excluded_downtimes array SLA excluded downtimes to be created for the SLA.

Visszatérési értékek

(object) Egy objektumot ad vissza, amely tartalmazza a létrehozott SLA-k azonosítóit a slaids tulajdon alatt. A visszaküldött azonosítók sorrendje megegyezik az átadott SLA-k sorrendje.

Példák

SLA létrehozása

Utasítás egy SLA bejegyzés létrehozására a következőkhöz: * az SQL-motorhoz kapcsolódó szolgáltatások üzemidejének nyomon követése; * egyéni menetrend az összes hétköznapra, kivéve a szombati utolsó órát; * a hatálybalépés dátuma a 2022-es év utolsó napja; * július 4-én éjféltől 1 óra 15 perces tervezett leállással; * Az SLA heti jelentés számítása bekapcsolva lesz; * a minimálisan elfogadható SLO 99,9995% lesz.

Request:

{
           "jsonrpc": "2.0",
           "method": "sla.create",
           "params": [
               {
                   "name": "Database Uptime",
                   "slo": "99.9995",
                   "period": "1",
                   "timezone": "America/Toronto",
                   "description": "Provide excellent uptime for main database engines.",
                   "effective_date": 1672444800,
                   "status": 1,
                   "schedule": [
                       {
                           "period_from": 0,
                           "period_to": 601200
                       }
                   ],
                   "service_tags": [
                       {
                           "tag": "Database",
                           "operator": "0",
                           "value": "MySQL"
                       },
                       {
                           "tag": "Database",
                           "operator": "0",
                           "value": "PostgreSQL"
                       }
                   ],
                   "excluded_downtimes": [
                       {
                           "name": "Software version upgrade rollout",
                           "period_from": "1648760400",
                           "period_to": "1648764900"
                       }
                   ]
               }
           ],
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "slaids": [
                   "5"
               ]
           },
           "id": 1
       }

Forrás

CSla::create() az ui/include/classes/api/services/CSla.php-ban.