Start a conversation

Determining Who Removed a Tile from a Group

Overview

You previously had a Tile on a page within your Jive instance that was removed. You want to understand when the Tile was removed and who removed it.

 

Solution

When you encounter an issue with a Tile being removed unexpectedly, most often this can be traced back to a user making the changes. While the tile will likely need to be recreated, as content changes to groups cannot be restored, understanding the reason for the tile being removed can help avoid this trouble in the future.

Jive does not directly capture audit log events for tiles being removed, so the process to isolate this behavior will require some analysis and cross-comparison with details within your Jive Database and the Cloud Analytics services. As Cloud and Hosted instances will not have direct database access, please submit a support request to help facilitate this investigation on your behalf. 

<supportagent>

When you receive requests to investigate, you can reference the steps below and run the queries via the Magic Query Tool.

Once the user details have been verified, you can share this with the customer directly to adjust permissions or correspond with the user, as needed.

</supportagent>

 

Reviewing the Tiles in the Database

  1. Verify the Container ID of the affected page:
    1. Edit the page to collect the Container ID from the URL:
      1. mceclip0.png
  2. Using the collected pageID, execute the following query, replacing <GROUPID> with the value collected from the previous step:
    1. SELECT to_timestamp(jti.modificationdate/1000) AS tile_modification_date,
      to_timestamp(jtp.modificationdate/1000) AS page_modification_date,
      jti.parentobjectid,
      jti.instanceorder,
      jti.tileid,
      jti.tileinstanceid,
      jti.instancecolumn,
      jti.state,
      jt.tilename,
      jtp.pagetype,
      jtp.displayname,
      jtp.name,
      jtp.tilepageid
      FROM jivetileinstance jti
      JOIN jivetile jt ON jt.tileid = jti.tileid
      JOIN jivetilepage jtp ON jti.parentobjectid = jtp.tilepageid
      WHERE jti.parentobjectid = <GROUPID>
      ORDER BY jti.modificationdate DESC LIMIT 100;
  3. As a first step, confirm that the affected tiles are not simply hidden.
    1. Verify that all tiles on the page show a state of “VISIBLE”:
      1. mceclip2.png
    2. If any tiles appear with a different State, you can verify the tile name.
      1. If this matches the missing tile, adjusting the state of the tile instance to VISIBLE may restore the "missing" tile.
  4. Next, you can review when the most recent changes were actioned on the group by reviewing the page_modification_date from the query results.
    1. Collect the timestamp shown for use in the upcoming DES Explorer steps.
    2. Note: This timestamp will only show the most recent “save” to the page, so be aware that any changes made since the Tile was removed will impair your ability to cross-reference this with the Cloud Analytics Events.

 

Cross-Analyzing within Analytics Export (Cloud Only)

Note: Hosted and On-Premises customers that have enabled Cloud Analytics can reference Using the V2 Jive Data Export Service (Worx) to locate the ACTIVITY_DELETE_TILEINSTANCE event themselves, as the Analytics Export utility will not be available.

  1. Navigate to Avatar > Analytics Export within the Jive Instance.
  2. Adjust the Activity Time to the period you suspect the Tile was removed.
    1. Note: Entering a slightly larger range can help ensure no relevant Activity events are missed.
  3. Add a new Filter by selecting the Plus sign, and choosing Action.
  4. Enter “ACTIVITY_DELETE_TILEINSTANCE” and click the plus sign, then click Apply.
    1. mceclip6.png
  5. With the filter set, click Preview to review the results.
  6. Compare the timestamps of the results with the timestamp you collected from the query:
    1. mceclip7.png
  7. Once a match has been found, you can identify the User that made the change from the Actor column.

 

  1.  
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted
  3. Updated

Comments