End User Data Monitoring?

A number of our users are exceeding their monthly data allotments. One user for instance is already at 18gig for this month alone. Many of the users are unaware of what might be causing this ridiculiusly high usage (for instance they aren't using streaming apps so the logical explaination of the overage isn't present).
Has anyone had success with a data monitoring tool which can inform the users of what EACH APP is using? Having the breakdown of which app is using the most data is the key, overall usage is something easily handled via the carrier but that does not help us determine what is causing the excess usage.

I have tried the Onavo app and I was told by their support it only displays the potential "data savings" not actual data used.
We utilize an MDM agent which shows apps currently installed, this one particular user does have the Sirius XM app which I am sure is responsible for some of their usage however other users who are going over have only our MDM (which simply acts as a connector to exchange).
Here's the email from Onavo
MAR 03, 2013  | 02:12PM IST
Hi,
Thanks for reaching out.
Firstly, we honestly apologize for the confusion. Allow me to try and explain:
The "Saved XX of" parameter displays the POTENTIAL data saving and not the total. For example, an HTTPS (encrypted) connection or Streaming Data cannot be compressed by Onavo.
Meaning, Onavo displays the amount of saved data ONLY for the apps that it can compress. All the reset are ignored.
Unlike this parameter, the iOSs total number include all data that you consume.
Hope that it helps.
Best regards,
Onavo Support Team
http://onavo.com

Similar Messages

  • Network traffic of an End-User Experience Monitoring (EEM) Robot

    Dear Experts,
    our company is currently using three EEM-Robots in different countries.
    After one month we noticed, that the network traffic of the robots is quite high (one robot used about 8 GB in one month).
    So I checked the configuration of the robots:
    Every Robot runs about five scripts, which are executed every ten minutes. Therefore every robot exectues 30 scripts in one hour.
    There are four SAPGUI Scripts and one http-script. Every Script (besides the http-Script) is collecting the system data (bold letters in the monitoring) and the trace level low (parameter trace.e2etracelevel = 0).
    So I start measuring the network traffic. I observed the connection with Wireshark:
    The robot uses in average 4000 Byte per second, which equates to 9,66 GByte for one month.
    After stopping every script and rebooting the robot, I measured the traffic again.
    The robot uses without executing a script in average 820 Byte per second, which equates to 2 GByte for one month.
    Are there some settings I overlooked, possibilities to decrease the network traffic? 
    Is that size of network traffic within the normal range?
    Regards
    Alex
    Edited by: Alexander Beck on Jan 11, 2012 10:57 AM

    Hi  Beck,      
    I am also working on End user experience monitoring.
    I want to in depth details in End User Experience Monitoring. If you have screen shots please share for me.
    Regards
    Balaji
    Edited by: Balaji Rao Bhoomraogari on Jan 18, 2012 12:19 PM

  • End User Experience Monitoring Querries

    Dear Experts,
    I have a doubt in End User Experience Monitoring (EEM), I created a SAP GUI Script
    that script  execute automatically every day. How to set automatically.
    Regards
    Balaji

    Dear Experts,
    I want to know the End user Experience Monitoring in the EEM Script how to assign the Region, Location,
    then how to call the script.
    Please give me provide solution.
    Regards
    Balaji

  • DPM 2012 still requires put end users into local admin groups for the purpose of end user data recovery?

    On client computers that are protected by DPM 2010 and prior versions, you had to put the end users account in the local administrators group. If you did not add the end user account to the local administrators group you would get this error after opening
    the recovery tab in the DPM client: “DPM found no recovery points which you are authorized to restore on the specified DPM server. You can restore only those recovery points for which you were an administrator at the time the
    backup was taken. To restore other recovery points, contact your DPM administrator, or attempt to restore from another DPM.”  This is not ideal on many networks because the end users are not allowed to have local administrator access.
    Ths fix to this was included in hotfix 2465832 found here: http://support.microsoft.com/kb/2465832.
    This hotfix (a hotfix rollup package for DPM 2010) resolves other issues with DPM 2010 as well. You can find the full list of what this hotfix corrects on that link.
    One would think this issue should have been resolved in DPM 2012, however I am encountering the same exact issue, had to include end-users into the workstation local admin group before they can search for recovery points on the DPM server. This is not acceptable
    practice.
    Is there a new hotfix for the same issue on DPM 2012? I am hesitated to apply KB2465832 since it also includes many other fixes for DPM 2010, which may not appicable for version 2012.
    Please help.
    Thanks,

    This is a hands off solution to allow all users that use a machine to be able to restore their own files.
    1) Make these two cmd files and save them in c:\temp
    2) Using windows scheduler – schedule addperms.cmd to run daily – any new users that log onto the machine will automatically be able to restore their own files.
    <addperms.cmd>
    Cmd.exe /v /c c:\temp\addreg.cmd
    <addreg.cmd>
    set users=
    echo Windows Registry Editor Version 5.00>c:\temp\perms.reg
    echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Data Protection Manager\Agent\ClientProtection]>>c:\temp\perms.reg
    FOR /F "Tokens=*" %%n IN ('dir c:\users\*. /b') do set users=!users!%Userdomain%\\%%n,
    echo "ClientOwners"=^"%users%%Userdomain%\\bogususer^">>c:\temp\perms.reg
    REG IMPORT c:\temp\perms.reg
    Del c:\temp\perms.reg
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT] This
    posting is provided "AS IS" with no warranties, and confers no rights.
    That's a good one! Thanks for that.
    I've been scripting on KIX for some time, so here is mine, hope it helps to someone... (it's probably not the best, but it works)
    ========================================================================
    $RC=setoption("WOW64AlternateRegView","on") 
    $DPMkey = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Data Protection Manager\Agent\ClientProtection"
    $uservariable = "%userdomain%\%username%"
    If KeyExist ($DPMkey)
    $Userstring=ReadValue($DPMkey, "ClientOwners")
    If $Userstring == ""
    WriteValue($DPMkey,"ClientOwners", $uservariable, "REG_MULTI_SZ")
    ? "Key created"
    else
    If not instr($Userstring,$uservariable)
    $Userstring = "$Userstring,$uservariable"
    WriteValue($DPMkey,"ClientOwners", $Userstring, "REG_MULTI_SZ")
    EndIf
    Endif
    EndIf
    ==========================================================================
    The problem actually is that you still need to use an admin account to write on the registry, so ensure you configure it properly on the schedule task.
    In case you use a service account on the schedule task... the "$uservariable" will get populated with that account. As a work around to this... I changed it for the following line:
    =========================================================
    $uservariable = ReadValue("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI", "LastLoggedOnSAMUser")
    =========================================================
    The only problem with that, is that key gets created/updated only if user gets logged phisically on that PC, but will not work for anyone connecting through RDP.

  • End user data loading

    Hi,
    I have a client who are totally newbies on Oracle DB.
    I need to provide them with a simple to use loading process.
    Can anyone recommend any free or moderately priced tools of this nature, or strategies you have used in the past.
    Data volumes are of a spreadsheet scale - i.e. not more than 50-60,000 rows.
    I have used sqlloader and external tables previously, but on errors neither of these are the most friendly of tools for a newbie.
    Any suggestions please?
    thanks,
    Robert.

    You can create user who has one procedure. This procedure is should be able to: import doc from folder, parse doc and insert data from this doc into other schema table (that is target table). After this you create batch file who will connect as this user and execute script. something like this:
    script import_data.sql
    exec import_data{(p1,p2.....pn)};
    .bat file
    sqlplus newUSER/newUSER@oracle @import_data
    In this case user need to update import_data if needed (Maybe doc name or what ever)
    and run batch file :)

  • End User Data Upload -  Error

    Hi Friends,
    Could you help me out with this:
    I am trying to utillize the Data upload feature in Oracle APEX 4.2.
    Procedure:
    Create New Page > Data upload
    I am giving a transformation here which checks for existing data. If data exists, the transformation updates the table else inserts. I am using the Merge command to execute this:
    I am using a "PL SQL Function" here,
    BEGIN
    MERGE INTO DEPT TARGET
    USING (SELECT :DEPTNO DEPTNO, :DNAME,:LOC FROM DUAL) SOURCE
    ON (TARGET.DEPTNO = SOURCE.DEPTNO)
    WHEN MATCHED THEN
    UPDATE SET TARGET.DNAME = SOURCE.DNAME, TARGET.LOC=SOURCE.LOC
    WHEN NOT MATCHED THEN
    INSERT (TARGET.DEPTNO, TARGET.DNAME, TARGET.LOC) VALUES(SOURCE.DEPTNO, SOURCE.DNAME,SOURCE.LOC);
    END;
    It is a simple DEPT table which as 3 columns(DEPTNo, DNAME, LOC)
    But it always throws me an error like
    Sequence Action DEPTNO DNAME LOC
    1 FAILED 52 EMPLOYEE MUMBAI
    2 FAILED 61 TEST TEST
    What is that i am doing wrong here. I have tried this before and it used to work earlier. But unfortunately it is not working now.
    Your help would be appreciable.
    Thank you,
    Srikumar S
    Edited by: Srikumar S on Mar 6, 2013 6:12 AM

    Dear Arun,
    Thank you very much for your quick answer.
    You solved my question!
    Regards,
    Alfio

  • How to monitor end user response times?

    Hi everyone.
    I'm using Oracle Enterprise Manager 10.2.0.5.0 for monitoring our development environment. We have many products but my focus is on a web application that is running on an Oracle Application Server. I need to monitor the reponse time of every HTTP request to check if this time is in the range of our SLAs.
    I've seen that OHS monitoring shows the mean response time, resource consumption, etc. But I haven't found any that lets me do more detailed monitoring (at the level o HTTP request).
    I'm reading right now 3 books about it but it does't mention this feature (just in case):
    - Middleware Management with Oracle Enterprise Manager Grid Control 10gR5
    - Oracle Enterprise Manager Administration 10.2.0.5 (from Oracle Library)
    - Oracle Enterprise Manager Grid Contro lInstallation And Configuration 10.2.0.5.0
    ¿Does anybody knows if Enterprise Manager have this feature?
    Thanks in advance.

    Hi.
    Sorry for a long delay.
    The answer was so generic and didn't help too much. But today, after several days of research I found how to monitor the user perceived performance by using "End-User Performance Monitoring". In theory this feature lets me register a Web Server and monitor its access log and also create a SLAs monitor based on it.
    Right now I'm reading a lot about it just and trying of enable it to an OHS. I did it for an Oracle Web Cache.
    Anyway, thanks a lot for your interest and if someone find it useful, when I get more functionality working, I'll post something here.
    Best regards.

  • Recording NWBC scripts for End User Experience

    Hi Experts,
    I am recording NWBC scripts using the Netweaver Business Client GUI for loading and running it through Robots for End User Experience Monitoring. I don't see an option to "LogOff" in NWBC client while recording  the script. We only have option to "Close all session and LogOff" in NWBC client .
    When I am using this option, it closes all the sessions including the EEM Recorder also without saving the recording .
    I need to include "LogOff" as the last step so that it doesn't leave any active sessions for each run by different robots.
    I have a Solution Manager 7.1 SP10 and NWBC client 3.5 Patch 13.
    Please help me achieve this.
    Regards,
    Manish K

    Hi,
    for a browser the recommendation is to open a new, empty tab to keep the browser alive while closing the tab with the  session. All that with the hope that the backend will use the triggered event of collapsing tab to close session.
    Maybe a similar strategy works for NWBC.. but I don't know the UI in detail.

  • End-User Experience error running agent on windows server 2008 R2

    Hi,
    I have installed implemented the end-Uer experience agent in a Windows 7 without issues but when we have installed the SDM 7.30 agent and the SAP GUI 730 in a Windows server 2008 R2 and we have configured the agent as End-User experience monitoring Robot in solution manager.
    We have distributed one script without issues but the executios are failing with the message:
    "SAPGUI Compontent" could not be instantiated (sapfewse):605
    We have reviewed the bellow notes but wothout success:
    1261706 - Kill bits set for SAP GUI Scripting
    1092631 - Remote vulnerabilities in SAP GUI for Windows
    We are able to run the scripts in the server directly in the SAPGUI and even with the EemEditor.
    SAP message is open since last week, but my be you can provide a faster response.
    Could you please help me.
    Kind Regards

    Have you followed installation procedure described in the following article: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_install.html ?
    You can find troubleshooting hints in the following article: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_troubleshooting.html
    I'd reccomend to install CDA instead of AD agent (nice GUI...) but you'll have to create new (virtual) server for that: http://www.cisco.com/en/US/docs/security/ibf/cda_10/Install_Config_guide/cda_install.html

  • Monitor connected front end users

    Hi ,
    I have an application with access control list and table which holds application users / used for authorization etc ...
    at the database level I would like to see and know which session belongs to which fron end users!
    at the database level I can only see session id's and application's username which is htmldb_public_user.... and its unique for every user..
    lookin at Utilities>Database Monitor>Sessions page I can only see one developer connected! but cant see session or session id for front end users? is there anyway to find out the session info for this user?
    Thanks

    its the same question with a diffrence that he is trying to have diffrent applications login as diffrent username so he can trace applications individually(which is what im intrested in too) where as im more intrested in knowing the session id for each front end users who are viewing/inserting or deleting data through the applications! hope this makes sense!
    I dont undrestand below response!
    Bill,
    FYI, the engine does this for each database session:
    begin dbms_application_info.set_client_info(g_user); dbms_session.set_identifier(substr(g_user,1,(64 - length(g_instance)-1))||':'||to_char(g_instance)); dbms_application_info.set_module('APEX:APPLICATION '||to_char(g_flow_id),'PAGE '||to_char(g_flow_step_id)); exception when others then null; end;
    ...where g_user is the authenticated user, g_flow_id is the application ID, g_flow_step_id is the page ID, and g_instance is the Application Express sessionID. I don't know where to tell you to look for these markers but they will be associated with the database sessions that you're seeing which are owned by APEX_PUBLIC_USER.
    We are looking to move to a 4 RAC environment which is creating many questions concerning APEX architecture.
    I've seen all your other posts about this and IMO, there are no questions to be answered about the architecture of Application Express vis-a-vis RAC, and vice versa.
    Thanks
    Message was edited by:
    friendlier

  • Best way to data transfer between Database & XML & Display to end user

    Hi,
    What is the best mothod to insert the data into tables from XML and viceversa. Also I need to display the data to the end user, with the provision to edit the data.
    Thanks in advance

    If you want to edit and store the data completely in XML then you could do the following:
    1) Register the XML schema and specify a default table.
    2) Connect to the XDB repository and store your documents using FTP or WebDAV. Make sure they reference the registered schema in the instance header. This should load the underlying XMLTYPE table you specified as the default table.
    3) Connect to the repository with a WebDAV-aware XML editor.
    And if you want to take this a little further, then you could also do the following:
    4) Create a relational view on top of your XML table using code similar to below.
    CREATE OR REPLACE VIEW "ACT_LIST" ("NAME", "CITE", "SORT", "JURISDICTION", "LOCATION") AS
    SELECT
    ExtractValue(OBJECT_VALUE, '/act/act_version/name[1]') Name
    , ExtractValue(OBJECT_VALUE, '/act/act_version/cite[1]') Cite
    , ExtractValue(OBJECT_VALUE, '/act/act_version/name[1]/@sort') Sort
    , ExtractValue(OBJECT_VALUE, '/act/@juris') Jurisdiction
    , b.ANY_PATH Location
    FROM
    ACTS a
    , RESOURCE_VIEW b
    WHERE
    Ref(a) = ExtractValue(b.RES, '/Resource/XMLRef')
    5) Put that into an application (e.g. APEX) as a report.
    6) Link from the report to the XML editor and pass the location of the document in the repository. Or you can use an embedded WYSIWYG XML editor so that they edit the document inside the application and the whole thing is fairly seamless for the user.
    Hope this helps.

  • OIM : End user should be able to edit his resource data

    Hi,
    When the end user logs in and requests for AD resource, he does not see the AD resource form. All the data for the form is prepopulated according to some predefined rules. What i want to do is to allow the End-user to modify his AD form data.
    How can i do the above?????
    What privilages do i have to grant to End Users???/
    Kindly Help.
    null

    Hi,
    So here are my thoughts...
    1) The only fields that should go into the resource form are those fields that you want a requester (or approver) to modify or see during a request workflow. If it is provisioning related, for example, the uSNCreated of an AD User, it should not go on the Resource Object form (let's call it the object form from here on out). Also, you can have fields on the object form that don't ever need to go on the process form (provisioning process)... and these would be request related fields, not provisioning.
    2) This is where we need to be specific about terminology.. Resource Administrators are those people that can modify the resource... typically they have access to the design console... for some reason, I don't think you mean these people, right? You mean the people who will approve the requests, right? If that is the case, you can have them just see one form or the other, and you can also give them rights to modify one form or the other. This is done at the group level through Permissions and Menu Items (a combination).
    3) Resource Object Data Flow trumps pre-populate. (I am like 99% sure on this.. I would have to test it to be sure.. I believe it is the same as Access Policies, which does trump pre-populate adapters)
    4) I have NO clue :) I would love some improvements in the forum... especially separating out the products in the IDM stack into their own forums.
    Good luck,
    Deborah

  • Notification to End Users after Data Loads

    Hi Everyone,
    We are currently working on the development of a solution to nofity our end user community following load processing in BW.  Specifically, at the time an infoprovider is ready for reporting we are trying to send a notification out based upon the time and availability of data. 
    We are working on something more robust than just email sent from process chains or a third party scheduler, but something more dynamic that will say what time data was loaded and what data is available...
    Has anyone worked with this and if so, can you share your thoughts/perspectives on the solution you implemented?
    Thank you very much.
    Cheers, Craig

    I did something similar for a kind of protocolling of process chains. Write an ABAP with a couple of parameters you need like Status (Ok/Error), Process Chain, Email to notify, message class and number etc.
    At the end of every process chain you can attach one AND- and one OR-process. The AND-Process is triggered if all final steps of the process chain are finished green, the OR-Process is triggered if at least one process is finished red. Now create one 'Ok'-Variant and one 'Error'-variant for each of your process chains and attach these variants to the AND- and OR-Process.
    Inside the ABAP you can do any kind of ABAP-protocolling, sending emails, triggering events etc.
    Best regards
       Dirk

  • End User Doc. Create / Change Customer Master Data

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    Hi Experts,
    I would appreciate, if anyone of you could forward me the end user documents for creating & changing customer master data.
    sonicasmailbox at rediff
    Points will be assigned.
    Regards
    Sonica

    Hi
    Refer to help.sap.com for creating customer master data.
    Copy this to word document and it will be become user manual.
    http://help.sap.com/saphelp_ides/helpdata/en/47/ef8c64124811d2806f0000e8a495b3/content.htm
    Additionally refer to this weblink
    http://web.mit.edu/cao/www/AR/ar1/ar_FD01.htm - This if for FICO only.
    Changing customer master record.
    Use T.Code XD02.
    Enter Customer No,Company code,Sales Org, Distribution channel and division and press Enter or
    Enter Customer no,company code and click on customer's sales area, you will see Sales Org, Distribution channel and division,select the Sales org,Sales Org, Distribution channel and division and press enter.
    You can make necessary changes to customer master
    Please let me know if you need more information.
    Asssign points if useful.
    Regards
    Sridhar M

  • Help with preventing changes form data when submitted by end user

    Hello
    Looking for some kind person to guide me on a need to add a level of security to forms to:
    Allow an end user to complete the form, submit as usual but when the form is received back (added to tracker/response file) the data that the end user submitted cannot be edited in anyway.
    Appreciate any guidance here....
    thanks
    Lawrence

    solved..

Maybe you are looking for