Manage Virtual Tenants
######################

Access a Virtual Tenant
=======================

**To manage the life cycle of a Virtual Tenant, double click on the tenant from the Virtual Tenants user interface:**

.. image:: img_v2/manage_vtenants/screen1.png
   :alt: screen1.png
   :align: center
   :width: 1200px
   :class: with-border

**From this screen, you can:**

- Open the Virtual Tenant user interface
- Refresh the Virtual Tenant entities information
- Access the SLA dashboard for this Virtual Tenant
- Access to the Virtual Tenant management options
- Hide this Virtual Tenant from your personal profile
- Access to any of the Virtual Tenant indexes easily

Managing a Virtual Tenant
=========================

**When accessing to the Virtual Tenant management:**

.. image:: img_v2/manage_vtenants/screen2.png
   :alt: screen2.png
   :align: center
   :width: 800px
   :class: with-border

**From this screen, you can:**

- Access to the Knowledge Objects explorer for this tenant
- Modify components enabled in the tenant (add / delete tenants)
- Update the RBAC policies and ownership
- Disable this tenant and all of its related Knowledge Objects
- Permanently delete this tenant and all of its related Knowledge Objects

Knowledge Objects Explorer
--------------------------

**This screen allows to easily get the full list of Knowledge Objects and their types for that specific tenant:**

.. image:: img_v2/manage_vtenants/screen3.png
   :alt: screen3.png
   :align: center
   :width: 1200px
   :class: with-border

**Click on Open in search to access through the Splunk Search user interface:**

.. image:: img_v2/manage_vtenants/screen4.png
   :alt: screen4.png
   :align: center
   :width: 1200px
   :class: with-border

Modify (Add/Delete) TrackMe components
--------------------------------------

**This screen allows to add or delete a component to an existing Virtual Tenant:**

.. image:: img_v2/manage_vtenants/modify1.png
   :alt: modify1.png
   :align: center
   :width: 1200px
   :class: with-border

.. admonition:: Splunk Workload (splk-wlk)

   - Currently, the splk-wlk component cannot be added to or deleted from an existing Virtual Tenant
   - However, a Workload Virtual Tenant can be modified to add or delete other components

.. attention:: **Deleting a component**

   - When deleting a component from a Virtual Tenant, all TrackMe related knowledge objects are permanently deleted
   - Related KVstores content are as well permanently purged, this operation cannot be undone


Updating RBAC and ownership
---------------------------

**The screen allows you to modify the current RBAC policies and the Splunk ownership for this tenant:**

.. image:: img_v2/manage_vtenants/screen5.png
   :alt: screen5.png
   :align: center
   :width: 1200px
   :class: with-border

**When updating the policies or ownership:**

- All Knowledge Objects will be updated accordingly
- If the owner is changed, all Knowledge Objects will automatically be re-assigned to the target Splunk user
- Future TrackMe objects will be created and assigned to the owner user defined for the Virtual Tenant

**This can as well be performed via the REST endpoint and the following SPL command:**

::

    | trackme url=/services/trackme/v2/vtenants/admin/update_tenant_rbac mode=post body="{ 'tenant_id': 'flx-demo', 'tenant_roles_admin': 'trackme_amer_admin', 'tenant_roles_user': 'trackme_amer_user', 'tenant_owner': 'svc_trackme'}"

.. image:: img_v2/manage_vtenants/screen9.png
   :alt: screen9.png
   :align: center
   :width: 1200px
   :class: with-border      

Enabling / Disabling a tenant
-----------------------------

**You can enable / disable a tenant at any time, when disabling a tenant:**

- All Knowledge Objects are disabled in Splunk
- None of the execution related to that tenant will be performed as long as the tenant is disabled
- No data is removed, but all entities are inactive and not maintained anymore
- A disabled tenant can be re-enabled by an admin at any time

.. image:: img_v2/manage_vtenants/screen10.png
   :alt: screen10.png
   :align: center
   :width: 1200px
   :class: with-border     

.. image:: img_v2/manage_vtenants/screen11.png
   :alt: screen11.png
   :align: center
   :width: 1200px
   :class: with-border        

.. image:: img_v2/manage_vtenants/screen12.png
   :alt: screen12.png
   :align: center
   :width: 1200px
   :class: with-border    

You can disabled a tenant using the REST endpoint with the following SPL command:

::

    | trackme url=/services/trackme/v2/vtenants/admin/disable_tenant mode=post body="{ 'tenant_id': 'flx-demo'}"

.. image:: img_v2/manage_vtenants/screen13.png
   :alt: screen13.png
   :align: center
   :width: 1200px
   :class: with-border    

You can enable a tenant using the REST endpoint with the following SPL command:

::

    | trackme url=/services/trackme/v2/vtenants/admin/enable_tenant mode=post body="{ 'tenant_id': 'flx-demo'}"

.. image:: img_v2/manage_vtenants/screen14.png
   :alt: screen14.png
   :align: center
   :width: 1200px
   :class: with-border    

Deleting a tenant
-----------------

**When deleting a tenant:**

- All of its related objects are permanently deleted
- This operation cannot be undone, KVstore collection are flushed and could only be restored from backups, objects such as Hybrid trackers would need to be re-created
- Once a tenant has been deleted, there are no traces of the tenant left apart from the previously generated events and metrics which are left untouched

.. image:: img_v2/manage_vtenants/screen15.png
   :alt: screen15.png
   :align: center
   :width: 1200px
   :class: with-border   

.. image:: img_v2/manage_vtenants/screen16.png
   :alt: screen16.png
   :align: center
   :width: 1200px
   :class: with-border      

**You can delete a tenant using the REST endpoint with the following SPL command:**

::

    | trackme url=/services/trackme/v2/vtenants/admin/del_tenant mode=delete body="{ 'tenant_id': 'flx-demo'}"

.. image:: img_v2/manage_vtenants/screen17.png
   :alt: screen17.png
   :align: center
   :width: 1200px
   :class: with-border

Hiding a tenant from your personal profile
==========================================

**You can use this option to permanently hide a given tenant from your personal profile:**

- Other TrackMe users are unaffected
- One or more tenants can be hidden
- You can modify this at any time, and refer to the default configuration if wanted

.. image:: img_v2/manage_vtenants/screen18.png
   :alt: screen18.png
   :align: center
   :width: 1200px
   :class: with-border

.. image:: img_v2/manage_vtenants/screen19.png
   :alt: screen19.png
   :align: center
   :width: 1200px
   :class: with-border

Once a tenant has been hidden, it won't appear any longer from the Virtual Tenants user interface for your own profile, the tenant life cycle itself is obviously left untouched.

**To access your personal tenant setting preferences, click on the button "Edit my position preferences" from the Virtual Tenants user interface:**

.. image:: img_v2/manage_vtenants/screen20.png
   :alt: screen20.png
   :align: center
   :width: 1200px
   :class: with-border

.. image:: img_v2/manage_vtenants/screen21.png
   :alt: screen21.png
   :align: center
   :width: 1200px
   :class: with-border

**From this screen, you can:**

- re-order the tenants flex boxes upon your preferences
- show or hide any available tenants accordingly

**If you wish to reset your tenant preferences, click on the button "Reset my user profile" from the Virtual Tenants user interface:**

.. image:: img_v2/manage_vtenants/screen22.png
   :alt: screen22.png
   :align: center
   :width: 1200px
   :class: with-border

**You can then choose to:**

- Reset only your Tenants Flex boxes preferences
- Reset only your theme preferences
- Reset all preferences

.. image:: img_v2/manage_vtenants/screen23.png
   :alt: screen23.png
   :align: center
   :width: 1200px
   :class: with-border

SLA compliance
==============

In TrackMe, the SLA compliance purpose is to track the level of quality from the lens of the percentage of time spent in green state for a given entity.

This Key Performance Indicator (KPI) is a concept that you can then rely on to report the level of quality of the Splunk data availability according to your context.

**To access the SLA dashboard from a Virtual Tenant, click on the "SLA overview" button from the tenant welcoming screen:**

.. image:: img_v2/manage_vtenants/screen24.png
   :alt: screen24.png
   :align: center
   :width: 1200px
   :class: with-border

.. image:: img_v2/manage_vtenants/screen25.png
   :alt: screen25.png
   :align: center
   :width: 1200px
   :class: with-border