Skip to main content

BusinessService

No description

type BusinessService implements MonitoredSystem {
id: ID!
mst: Int!
checks(
where: FilterInput
order: OrderInput
): [Check!]!
checkCount(
where: FilterInput
): Int!
checkCountSummary(
filter: CheckKind
): CheckCountSummary!
checksRelay(
first: Int
after: String
where: FilterInput
order: OrderInput
): CheckConnection
customAttributes: [CustomAttribute!]!
customData: String
customer: Customer!
description: String
maintenance: Boolean
monitorOff: Boolean
monitorOffUntil: DateTime
monitorSwitchReason: String
monitorSwitchDate: DateTime
name: String
operational: Boolean
operationalSince: Date
operationalUntil: Date
status: Status!
statusId: Int!
systemRole: String @deprecated
role: SystemRole
type: MonitoredSystemType!
timestamp: DateTime
uuid: String
actions(
actionType: [SystemActionType!] = [Start, Stop, Restart]
): [SystemAction!]!
performance: MonitoredSystemPerformanceData
administrator: User
administratorDeputy: User
remote: Boolean!
info: [InfoNode]
applicationType: String
assignedSLA: ServiceLevelAgreement
monitorLevel: MonitorLevel!
credentialPurposes: [CredentialsPurpose]!
credentials: [CredentialsBase]!
notSeen: Boolean
notifications(
where: FilterInput
order: OrderInput
): [Notification]!
pagedNotifications(
pageRequest: PageRequest!
where: FilterInput
order: OrderInput
): NotificationPage!
managedStatus: ManagedSystemStatus!
monitoringParametersGroups: [MonitoringParameterGroup!]!
monitoringParameterByName(
name: String!
): ValueParameter
draft: Boolean!
application: ApplicationType
changes(
where: FilterInput
order: OrderInput
): [Change!]!
pagedChanges(
pageRequest: PageRequest!
where: FilterInput
order: OrderInput
): ChangePage
systemParameterSets: [SystemParameterSet!]!
}

Fields

BusinessService.id ● ID! non-null scalar

BusinessService.mst ● Int! non-null scalar

The numeric monitored system type. 0 = Server 1 = SapInstance 2 = SapSystem 3 = Database (can be StandaloneDatabase or SapSystemDatabase) (4 = BusinessService) 5 = SapBusinessObject 6 = CloudService

BusinessService.checks ● [Check!]! non-null interface

Get all the available RTM checks for the given status selection. If the call should return different kind of checks the filter input has to be used with the explicit value for the kind field. If there is no kind filter field defined it defaults to: { name: "kind" operator: eq value: "RTM" }

BusinessService.checks.where ● FilterInput input

The filter conditions for this query.

BusinessService.checks.order ● OrderInput input

The order of the results.

BusinessService.checkCount ● Int! non-null scalar

Count the affected checks.

BusinessService.checkCount.where ● FilterInput input

The filter conditions for this query.

BusinessService.checkCountSummary ● CheckCountSummary! non-null object

Get a check count summary.

BusinessService.checkCountSummary.filter ● CheckKind enum

BusinessService.checksRelay ● CheckConnection object

BusinessService.checksRelay.first ● Int scalar
BusinessService.checksRelay.after ● String scalar
BusinessService.checksRelay.where ● FilterInput input
BusinessService.checksRelay.order ● OrderInput input

BusinessService.customAttributes ● [CustomAttribute!]! non-null object

Custom attributes defined for this monitored system.

BusinessService.customData ● String scalar

Special data for this monitored system

BusinessService.customer ● Customer! non-null object

BusinessService.description ● String scalar

BusinessService.maintenance ● Boolean scalar

BusinessService.monitorOff ● Boolean scalar

BusinessService.monitorOffUntil ● DateTime scalar

BusinessService.monitorSwitchReason ● String scalar

BusinessService.monitorSwitchDate ● DateTime scalar

BusinessService.name ● String scalar

BusinessService.operational ● Boolean scalar

BusinessService.operationalSince ● Date scalar

BusinessService.operationalUntil ● Date scalar

BusinessService.status ● Status! non-null enum

The status of the monitored system

BusinessService.statusId ● Int! non-null scalar

The check status as number: 2 => CRITICAL 1 => WARNING 0 => OK -1 => UNKNOWN -2 => DISABLED

BusinessService.systemRole ● String deprecated scalar

DEPRECATED

Use the improved variant role that points to a SystemRole type.

The role of this system.

BusinessService.role ● SystemRole object

The role of this system.

BusinessService.type ● MonitoredSystemType! non-null enum

BusinessService.timestamp ● DateTime scalar

BusinessService.uuid ● String scalar

BusinessService.actions ● [SystemAction!]! non-null object

Get all the possible system actions. They can be used with mutation executeSystemAction(...).

BusinessService.actions.actionType ● [SystemActionType!] list enum

BusinessService.performance ● MonitoredSystemPerformanceData object

This field holds information about the available performance resources for this monitored system.

BusinessService.administrator ● User object

Who is responsible as administrator for this system.

BusinessService.administratorDeputy ● User object

Who is responsible as administrator deputy for this system.

BusinessService.remote ● Boolean! non-null scalar

Is this a remote system

BusinessService.info ● [InfoNode] list object

Information about this monitored system.

BusinessService.applicationType ● String scalar

The application type of this monitored system.

BusinessService.assignedSLA ● ServiceLevelAgreement object

The assigned SLA (service level agreement).

BusinessService.monitorLevel ● MonitorLevel! non-null enum

The monitor level

BusinessService.credentialPurposes ● [CredentialsPurpose]! non-null object

Available credential purposes for this system.

BusinessService.credentials ● [CredentialsBase]! non-null interface

Available credentials for this system.

BusinessService.notSeen ● Boolean scalar

Whether this system is "not seen". Not seen means the system was once seen on an agent but now it isn't.

BusinessService.notifications ● [Notification]! non-null interface

Associated notification actions

BusinessService.notifications.where ● FilterInput input
BusinessService.notifications.order ● OrderInput input

BusinessService.pagedNotifications ● NotificationPage! non-null object

The paged variant for the notification field.

BusinessService.pagedNotifications.pageRequest ● PageRequest! non-null input
BusinessService.pagedNotifications.where ● FilterInput input
BusinessService.pagedNotifications.order ● OrderInput input

BusinessService.managedStatus ● ManagedSystemStatus! non-null enum

Managed status for this system.

BusinessService.monitoringParametersGroups ● [MonitoringParameterGroup!]! non-null object

Monitoring parameter groups

BusinessService.monitoringParameterByName ● ValueParameter object

Query a single monitoring parameter by its name. Here is an example query: query MoniParams { servers { agentConnect: monitoringParameterByName(name: "AgentListenerPort") { id name values } agentEnv: monitoringParameterByName(name: "AgentEnvironment") { id name values } } }

BusinessService.monitoringParameterByName.name ● String! non-null scalar

BusinessService.draft ● Boolean! non-null scalar

Tells if a draft or a saved system.

BusinessService.application ● ApplicationType object

The application type for this monitored system.

BusinessService.changes ● [Change!]! non-null object

Changes for this monitored system.

BusinessService.changes.where ● FilterInput input
BusinessService.changes.order ● OrderInput input

BusinessService.pagedChanges ● ChangePage object

Paged changes for this monitored system.

BusinessService.pagedChanges.pageRequest ● PageRequest! non-null input
BusinessService.pagedChanges.where ● FilterInput input
BusinessService.pagedChanges.order ● OrderInput input

BusinessService.systemParameterSets ● [SystemParameterSet!]! non-null object

Returns all available system parameter sets.

Interfaces

MonitoredSystem interface

Interface for a monitored system

Returned By

businessService query ● businessServices query ● turnMonitoringOffForBusinessService mutation ● turnMonitoringOnForBusinessService mutation

Member Of

BusinessServicePage object