Skip to Main Content
IBM Data and AI Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data & AI organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:


Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,


Post your ideas

Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the IBM team to refine your idea


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

IBM Employees should enter Ideas at https://ideas.ibm.com


Status Under review
Created by Guest
Created on Feb 8, 2024

Info report about users who have not logged in for x days (configurable)

Admin should be able to login and generate a report about users who were given access but haven't logged onto the platform for 30 days (or 60 or 90 days).

Needed By Not sure -- Just thought it was cool
  • Admin
    Narayan Samal
    Reply
    |
    Apr 10, 2024
    Hello Sourabh - We have incorporated a new feature which might come handy to get the user access report. Please refer to this document for further info -https://www.ibm.com/docs/en/cloud-paks/cp-data/4.8.x?topic=environment-monitoring-user-activity.


  • Admin
    SACHIN PRASAD
    Reply
    |
    Feb 9, 2024

    Hi Sourabh -
    Please review the below Queries. Long terms, we would look at option of adding few OOTB reports which can be used as a template -


    We can utilize the field last_session_start_timestamp in misc column of platform_users table.Query 1: Users created and already logged-in/logged-out BUT not active for "X" days (In this case we can utilised last_session_start_timestamp )
    SELECT uid, username, misc
    FROM platform_users
    WHERE
    misc->>'last_session_start_timestamp' IS NOT NULL
    AND misc->>'last_session_start_timestamp' <> ''
    AND (CURRENT_TIMESTAMP - TO_TIMESTAMP((misc->>'last_session_start_timestamp')::bigint / 1000)::timestamp) > INTERVAL '3 days';
    Query 2: Users created but not logged-in yet for "X" days (In this case we don't have last_session_start_timestamp so we need to depend on created_timestamp column
    SELECT uid, username, misc
    FROM platform_users
    WHERE
    (misc->>'last_session_start_timestamp' IS NULL OR misc->>'last_session_start_timestamp' = '')
    AND created_timestamp IS NOT NULL
    AND (CURRENT_TIMESTAMP - TO_TIMESTAMP((created_timestamp)::bigint / 1000)::timestamp) > INTERVAL '3 days';
    We can combined these Query like:
    SELECT uid, username, misc
    FROM platform_users
    WHERE
    (
    (misc->>'last_session_start_timestamp' IS NOT NULL
    AND misc->>'last_session_start_timestamp' <> ''
    AND (CURRENT_TIMESTAMP - TO_TIMESTAMP((misc->>'last_session_start_timestamp')::bigint / 1000)::timestamp) > INTERVAL '3 days')
    )
    OR
    (
    (misc->>'last_session_start_timestamp' IS NULL OR misc->>'last_session_start_timestamp' = '')
    AND created_timestamp IS NOT NULL
    AND (CURRENT_TIMESTAMP - TO_TIMESTAMP((created_timestamp)::bigint / 1000)::timestamp) > INTERVAL '3 days'
    );
    We can use INTERVAL with different units such as seconds, minutes, hours, days, months