Ad Widget

Collapse

Zabbix Rubrik backup jobs monitoring

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Phat
    Junior Member
    • Jul 2021
    • 2

    #1

    Zabbix Rubrik backup jobs monitoring

    Hi All,

    I have added a Rubrik backup server with SNMP agent in Zabbix.

    How can I monitoring CPU, Memory and Disk space parameters for Rubrik server

    And I would like to monitor the backup jobs status as well like failed/successful. Could you help me and suggest if there any template available for the same or how to proceed on this. Thanks.
  • Peterborto
    Junior Member
    • Jul 2021
    • 2

    #2
    Hi there, which version off zabbix do you have ?

    my challenge would be to monitoring the cluster status.

    Thank you for the infos.

    Comment

    • Phat
      Junior Member
      • Jul 2021
      • 2

      #3
      Hi there,

      I have zabbix 5.0

      Comment

      • Peterborto
        Junior Member
        • Jul 2021
        • 2

        #4
        Originally posted by Phat
        Hi there,

        I have zabbix 5.0
        could you give some info about how you do configured zabbix and rubrik monitoring?
        Such as monitoring IPMI, or single nodes of Rubrik ?
        I think that for the single check of backup failed or successful you have to use Rubrik API.
        Thank you

        Comment

        • kleemans
          Junior Member
          • Aug 2021
          • 1

          #5
          I think the best approach here is to look at http agent https://www.zabbix.com/documentation...itemtypes/http

          Rubrik has REST API build from the core which is described here: https://github.com/rubrikinc/api-documentation

          I've managed to get data with the http agent to Zabbix 5.0 LTS using basic authentication.

          I'm only struggling to filter data form the query to make it usefull. Basically the return value gives all recent backup jobs with their status. I only want to see new and backup jobs with errors.

          A return example is:
          Code:
          {
          "jobMonitoringInfoList": [{
          "jobMonitoringState": "Success",
          "jobStatus": "SuccessfulWithWarnings",
          "jobType": "Backup",
          "objectId": "Fileset:::23820c4b-ad43-4f53-bbce-44715386d871",
          "objectType": "ShareFileset",
          "objectName": "Everything",
          "locationId": "Host:::9f51b4c0-a39f-49cd-9877-d1a66cc528cc",
          "locationName": "\\\\revfile\\DATA",
          "slaDomainId": "0f6e80b0-6eaa-4f40-9410-3c0a5a671d94",
          "slaDomainName": "Fileset_Archival",
          "startTime": "2021-08-23T10:09:36.477Z",
          "endTime": "2021-08-23T10:38:36.088Z",
          "lastSuccessfulJobTime": "2021-08-22T10:09:34.491Z",
          "nextJobTime": "2021-08-24T10:09:36.477Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "dataTransferred": 901563931,
          "objectLogicalSize": 689745344432,
          "throughput": 1862239,
          "eventSeriesId": "f15650cd-4727-47e4-ab94-16450b559fde",
          "duration": 1739611,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:38:36.337Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-480",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVSAGA",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:15:21.333Z",
          "endTime": "2021-08-23T10:16:06.847Z",
          "lastSuccessfulJobTime": "2021-08-23T09:35:21.127Z",
          "nextJobTime": "2021-08-23T10:55:21.333Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 107374182400,
          "eventSeriesId": "f86d2961-18ff-4074-a211-5584dbbf8932",
          "duration": 45514,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:16:07.088Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-695",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVOMNIVISTA",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:17:11.312Z",
          "endTime": "2021-08-23T10:18:02.220Z",
          "lastSuccessfulJobTime": "2021-08-23T09:37:11.127Z",
          "nextJobTime": "2021-08-23T10:57:11.312Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 85899345920,
          "eventSeriesId": "35c5fdfd-c4b1-41aa-8a94-8ca036dce047",
          "duration": 50908,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:18:02.399Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-389",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVSQL1",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:36:41.465Z",
          "endTime": "2021-08-23T10:37:03.732Z",
          "lastSuccessfulJobTime": "2021-08-23T09:56:41.211Z",
          "nextJobTime": "2021-08-23T11:16:41.465Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 688534546432,
          "eventSeriesId": "b407ee77-9995-4f83-baa6-e37526772efc",
          "duration": 22267,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:37:03.944Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-673",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVDMELO",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:36:41.472Z",
          "endTime": "2021-08-23T10:37:11.472Z",
          "lastSuccessfulJobTime": "2021-08-23T09:56:41.228Z",
          "nextJobTime": "2021-08-23T11:16:41.472Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 85899345920,
          "eventSeriesId": "60c8941a-ceb3-4eae-9d20-6c7db437df27",
          "duration": 30000,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:37:11.729Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Replication",
          "objectId": "Fileset:::23820c4b-ad43-4f53-bbce-44715386d871",
          "objectType": "ShareFileset",
          "objectName": "Everything",
          "locationId": "Host:::9f51b4c0-a39f-49cd-9877-d1a66cc528cc",
          "locationName": "\\\\revfile\\DATA",
          "slaDomainId": "0f6e80b0-6eaa-4f40-9410-3c0a5a671d94",
          "slaDomainName": "Fileset_Archival",
          "startTime": "2021-08-23T10:40:35.914Z",
          "endTime": "2021-08-23T10:43:44.077Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "dataTransferred": 7065174016,
          "objectLogicalSize": 912389701632,
          "throughput": 55893153,
          "eventSeriesId": "717beed9-5277-4226-a8ef-7e0032ce382a",
          "duration": 188163,
          "nodeId": "RVMHM206S006713",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:43:44.403Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-472",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVCAD",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:41:41.431Z",
          "endTime": "2021-08-23T10:42:06.972Z",
          "lastSuccessfulJobTime": "2021-08-23T10:01:41.226Z",
          "nextJobTime": "2021-08-23T11:21:41.431Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 66571993088,
          "eventSeriesId": "f15a5504-f267-49e0-85de-737f1bb2f0f4",
          "duration": 25541,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:42:07.146Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-666",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVCTXPVS4",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:41:41.505Z",
          "endTime": "2021-08-23T10:42:13.625Z",
          "lastSuccessfulJobTime": "2021-08-23T10:01:41.249Z",
          "nextJobTime": "2021-08-23T11:21:41.505Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 279172874240,
          "eventSeriesId": "a4c9b1d3-9621-4f6b-b3ab-0223765fea11",
          "duration": 32120,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:42:13.816Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-571",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVSQLACC",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:41:47.682Z",
          "endTime": "2021-08-23T10:42:29.819Z",
          "lastSuccessfulJobTime": "2021-08-23T10:01:46.303Z",
          "nextJobTime": "2021-08-23T11:21:47.682Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 413390602240,
          "eventSeriesId": "03db29bb-4404-46e8-ac82-d6b0702db4f6",
          "duration": 42137,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:42:30.018Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-700",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVRAINBOWGW",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:41:52.348Z",
          "endTime": "2021-08-23T10:42:03.114Z",
          "lastSuccessfulJobTime": "2021-08-23T10:01:51.229Z",
          "nextJobTime": "2021-08-23T11:21:52.348Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 4294967296,
          "eventSeriesId": "1da62d65-47f8-41f7-80ec-da2b462f2407",
          "duration": 10766,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:42:03.311Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-602",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVVC-old",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "UNPROTECTED",
          "slaDomainName": "Unprotected",
          "startTime": "2021-08-23T10:42:03.549Z",
          "endTime": "2021-08-23T10:42:20.340Z",
          "lastSuccessfulJobTime": "2021-08-23T10:01:51.231Z",
          "nextJobTime": "2021-08-23T11:22:03.549Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 428282478592,
          "eventSeriesId": "1ac7b468-f6d5-46c6-a7ae-96d932f21186",
          "duration": 16791,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:42:20.571Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-663",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVCTXDC3",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:42:07.446Z",
          "endTime": "2021-08-23T10:42:39.588Z",
          "lastSuccessfulJobTime": "2021-08-23T10:01:51.251Z",
          "nextJobTime": "2021-08-23T11:22:07.446Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 64424509440,
          "eventSeriesId": "414214bc-8bf3-4291-b2f4-aad5c1c4a8c7",
          "duration": 32142,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:42:39.758Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-445",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVBI",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:42:18.126Z",
          "endTime": "2021-08-23T10:43:40.950Z",
          "lastSuccessfulJobTime": "2021-08-23T10:01:56.254Z",
          "nextJobTime": "2021-08-23T11:22:18.126Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 268435456000,
          "eventSeriesId": "7af505ea-9f69-4f46-8041-45f3c100e79e",
          "duration": 82824,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:43:41.129Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "SuccessfulWithWarnings",
          "jobType": "Backup",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-481",
          "objectType": "VmwareVirtualMachine",
          "objectName": "HTS0305",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:42:36.857Z",
          "endTime": "2021-08-23T10:45:29.323Z",
          "lastSuccessfulJobTime": "2021-08-22T10:42:34.909Z",
          "nextJobTime": "2021-08-24T10:42:36.857Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "dataTransferred": 173408256,
          "objectLogicalSize": 61245434880,
          "throughput": 1240606,
          "eventSeriesId": "f3cf9166-cf3b-47df-b3dc-078b6b33bdd5",
          "duration": 172466,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:45:29.537Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "SuccessfulWithWarnings",
          "jobType": "Backup",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-477",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVOXYGEN",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:42:36.862Z",
          "endTime": "2021-08-23T10:46:57.958Z",
          "lastSuccessfulJobTime": "2021-08-22T10:42:34.904Z",
          "nextJobTime": "2021-08-24T10:42:36.862Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "dataTransferred": 139853824,
          "objectLogicalSize": 91268055040,
          "throughput": 656242,
          "eventSeriesId": "e59d8cfe-be6f-48d3-8e48-589dd0fc8683",
          "duration": 261096,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:46:58.127Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "SuccessfulWithWarnings",
          "jobType": "Backup",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-435",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVTOPDESK",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:43:41.719Z",
          "endTime": "2021-08-23T10:46:53.016Z",
          "lastSuccessfulJobTime": "2021-08-22T10:43:40.109Z",
          "nextJobTime": "2021-08-24T10:43:41.719Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "dataTransferred": 1011417088,
          "objectLogicalSize": 67656471552,
          "throughput": 8537182,
          "eventSeriesId": "b53fcf58-4cea-44e4-bbbf-7d0181383011",
          "duration": 191297,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:46:53.200Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-664",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVCTXDC4",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:50:06.627Z",
          "endTime": "2021-08-23T10:50:38.134Z",
          "lastSuccessfulJobTime": "2021-08-23T10:10:06.336Z",
          "nextJobTime": "2021-08-23T11:30:06.627Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 64424509440,
          "eventSeriesId": "62ec94b7-a18b-4768-a24d-48dd73a3785d",
          "duration": 31507,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:50:38.308Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-474",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVWEBDMZ",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:50:06.629Z",
          "endTime": "2021-08-23T10:50:29.977Z",
          "lastSuccessfulJobTime": "2021-08-23T10:10:06.337Z",
          "nextJobTime": "2021-08-23T11:30:06.629Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 42949672960,
          "eventSeriesId": "09d6bf0a-6946-428c-bbc8-59e0df15bcc5",
          "duration": 23348,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:50:30.185Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-665",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVCTXPVS3",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:50:26.546Z",
          "endTime": "2021-08-23T10:50:55.718Z",
          "lastSuccessfulJobTime": "2021-08-23T10:10:26.317Z",
          "nextJobTime": "2021-08-23T11:30:26.546Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 279172874240,
          "eventSeriesId": "11fe4713-63ba-47f9-8ea3-4b4d04cc19d5",
          "duration": 29172,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:50:56.039Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-563",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVOAZISCOM",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:50:27.883Z",
          "endTime": "2021-08-23T10:51:00.398Z",
          "lastSuccessfulJobTime": "2021-08-23T10:10:26.324Z",
          "nextJobTime": "2021-08-23T11:30:27.883Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 85899345920,
          "eventSeriesId": "5f32a0c7-bfba-42de-bc8f-2ef09c43fc94",
          "duration": 32515,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:51:00.604Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-477",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVOXYGEN",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:50:41.514Z",
          "endTime": "2021-08-23T11:35:37.278Z",
          "lastSuccessfulJobTime": "2021-08-23T10:10:36.410Z",
          "nextJobTime": "2021-08-23T11:35:37.263Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 91268055040,
          "eventSeriesId": "3bc662af-9bb5-4fa4-8ea9-ca1cd65edb03",
          "duration": 2695764,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T11:35:37.446Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-703",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVSYNCORE",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:50:43.792Z",
          "endTime": "2021-08-23T10:51:30.717Z",
          "lastSuccessfulJobTime": "2021-08-23T10:10:36.419Z",
          "nextJobTime": "2021-08-23T11:30:43.792Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 64424509440,
          "eventSeriesId": "c50be750-3290-4d17-8907-89240099500e",
          "duration": 46925,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:51:30.888Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Replication",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-481",
          "objectType": "VmwareVirtualMachine",
          "objectName": "HTS0305",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:50:53.452Z",
          "endTime": "2021-08-23T10:51:29.629Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "dataTransferred": 166985728,
          "objectLogicalSize": 61245434880,
          "throughput": 11019250,
          "eventSeriesId": "e771bc3f-8876-4408-bbd0-7e510ca9322e",
          "duration": 36177,
          "nodeId": "RVMHM206S006522",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:51:30.226Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Index",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-572",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVAXIOITEC",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:55:21.500Z",
          "endTime": "2021-08-23T10:55:45.296Z",
          "lastSuccessfulJobTime": "2021-08-23T10:15:21.300Z",
          "nextJobTime": "2021-08-23T11:35:21.500Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "objectLogicalSize": 85899345920,
          "eventSeriesId": "b188f779-59c4-4fe1-850e-0d1c0449f5fc",
          "duration": 23796,
          "nodeId": "localhost",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:55:45.483Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }, {
          "jobMonitoringState": "Success",
          "jobStatus": "Success",
          "jobType": "Replication",
          "objectId": "VirtualMachine:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f-vm-477",
          "objectType": "VmwareVirtualMachine",
          "objectName": "REVOXYGEN",
          "locationId": "vCenter:::117f8dfd-48ef-4ee8-a4cb-6a7eff8dbd6f",
          "locationName": "revvc.hofterschelde.be",
          "slaDomainId": "21da8752-b0a2-41ab-9b13-62998553cfbe",
          "slaDomainName": "VirtualMachines",
          "startTime": "2021-08-23T10:57:41.945Z",
          "endTime": "2021-08-23T10:58:24.607Z",
          "isFirstFullSnapshot": false,
          "sourceClusterName": "LOCAL",
          "retryCount": 0,
          "maximumAttemptsForJob": 3,
          "dataTransferred": 135462912,
          "objectLogicalSize": 91268055040,
          "throughput": 6796252,
          "eventSeriesId": "7a1fc881-cc5f-4d27-994e-33af6a8faa90",
          "duration": 42662,
          "nodeId": "RVMHM206S006542",
          "warningCount": 0,
          "lastUpdatedTime": "2021-08-23T10:58:24.959Z",
          "isLogTask": false,
          "isOnDemand": false,
          "retryStatus": "NotRetried"
          }],
          "shouldIncludeLogRelatedJob": false,
          "afterId": "eyJqb2JJbnN0YW5jZUlkIjoiUFVMTF9SRVBMSUNBVEVfMTE3Z jhkZmQtNDhlZi00ZWU4LWE0Y2ItNmE3ZWZmOGRiZDZmLXZtLTQ 3NyMjIzE4IiwiY29sdW1uU29ydFZhbHVlIjoie1widHlwXCI6X CJTb21lVmFsdWVcIixcInZhbHVlT3B0XCI6XCIxNjI5NzE2MjY xOTQ1XCJ9In0=",
          "hasMore": true
          }

          Comment

          Working...