Gathering POI data

Hi all,
I've been able to gather geolocation data as far as latitude and longitude goes. How would I go about gathering POI data? I'm mainly interested in the types of businesses in the area, not their names - pharmacies, banks, parks, etc. I'm fairly new to actionscript so this may be a silly question.
Thank you.

I'm not using any specific API for POI yet as I haven't been able to find much info on it online. Could anyone recommend free POI API sources out there?

Similar Messages

  • Sun Gathering Debug Data

    I wanted to let everyone on this list know about a new set of tools called Sun Gathering Debug Data (Sun GDD or GDD).
    GDD is a way to better equip and educate customers who need to contact the Sun Technical Support Center on what debug data they need to provide the first time they call. For each product covered, GDD tools provide documentation and scripts that detail the relevant data the Sun Technical Support Center requires for analyzing problems. The tools gather 90% of the debug data frequently requested by the Sun Technical Support Center, including data for more common critical situations such as memory, start/stop, installation, hang, and crash issues. By collecting this data before initiating a Service Request, customers can substantially reduce the time needed to analyze and resolve the problem.
    The first release of GDD supports Messaging Server and Calendar Server, as well as many of the Java ES components, on all of the released operating systems. Support for other products is also currently underway. For more information on GDD, see the following URL :
    http://www.sun.com/service/gdd/index.xml

    I'm not using any specific API for POI yet as I haven't been able to find much info on it online. Could anyone recommend free POI API sources out there?

  • Gathering call data on forwarded calls in Attendant Console

    Hi, Does anyone know if there is a way to get call data for forwarded calls. Specifically calls forwarded to an extension from the Cisco Attendant Console.

    you could try CAR but there is no specific report for what you're looking for
    HTH
    javalenc
    if this helps, please rate

  • Gathering the data

    how do i make it so that when the radio button is clicked, a string of text is displayed below it? everytime i make an action listener for one of the radio buttons, my application won't run
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class swingMakeup implements ItemListener{
        JPanel cards; //a panel that uses CardLayout
        final static String BUTTONPANEL = "Meats";
        final static String TEXTPANEL = "Name Of Customer";
        final static String TEXTPANEL2 = "Number of Subs";
        final static String CHECKPANEL = "Fixins'";
        JRadioButton beef, turkey, sheep;
        JTextField name, number;
        public void addComponentToPane(Container pane) {
            //Put the JComboBox in a JPanel
            JPanel comboBoxPane = new JPanel();
            String comboBoxItems[] = { BUTTONPANEL, TEXTPANEL, TEXTPANEL2, CHECKPANEL };
            JComboBox cb = new JComboBox(comboBoxItems);
            cb.setEditable(false);
            cb.addItemListener(this);
            comboBoxPane.add(cb);
            //Create the cards
            JPanel card1 = new JPanel();
            card1.add(beef=new JRadioButton("Beef Lips -- $5.00"));
            card1.add(turkey=new JRadioButton("Turkey Liver -- $4.00"));
            card1.add(sheep=new JRadioButton("Sheep Stomach -- $6.00"));
            JPanel card2 = new JPanel();
            card2.add(name=new JTextField("", 20));
            JPanel card3 = new JPanel();
            card3.add(number=new JTextField("", 20));
            JPanel card4 = new JPanel();
            card4.add(new JCheckBox("Lettuce"));
            card4.add(new JCheckBox("Tomato"));
            card4.add(new JCheckBox("Onion"));
            card4.add(new JButton("Submit Order"));
            //Create the panel that contains the cards
            cards = new JPanel(new CardLayout());
            cards.add(card1, BUTTONPANEL);
            cards.add(card2, TEXTPANEL);
            cards.add(card3, TEXTPANEL2);
            cards.add(card4, CHECKPANEL);
            pane.add(comboBoxPane, BorderLayout.PAGE_START);
            pane.add(cards, BorderLayout.CENTER);
        public void itemStateChanged(ItemEvent evt) {
            CardLayout cl = (CardLayout)(cards.getLayout());
            cl.show(cards, (String)evt.getItem());
        private static void createAndShowGUI() {
            JFrame frame = new JFrame("swingMakeup");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            swingMakeup demo = new swingMakeup();
            demo.addComponentToPane(frame.getContentPane());
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    * Matthew Tye
    * Makeup Lab
    * 12-7-06
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class swingMakeup implements ItemListener, ActionListener{
        JPanel cards; //a panel that uses CardLayout
        final static String BUTTONPANEL = "Meats";
        final static String TEXTPANEL = "Name Of Customer";
        final static String TEXTPANEL2 = "Number of Subs";
        final static String CHECKPANEL = "Fixins'";
        JRadioButton beef, turkey, sheep;
        JTextField name, number;
        public void addComponentToPane(Container pane) {
            //Put the JComboBox in a JPanel
            JPanel comboBoxPane = new JPanel();
            String comboBoxItems[] = { BUTTONPANEL, TEXTPANEL, TEXTPANEL2, CHECKPANEL };
            JComboBox cb = new JComboBox(comboBoxItems);
            cb.setEditable(false);
            cb.addItemListener(this);
            beef.addActionListener(this);
            comboBoxPane.add(cb);
            //Create the cards
            JPanel card1 = new JPanel();
            card1.add(beef=new JRadioButton
            ("Beef Lips -- $5.00"));
            card1.add(turkey=new JRadioButton
            ("Turkey Liver -- $4.00"));
            card1.add(sheep=new JRadioButton
            ("Sheep Stomach -- $6.00"));
            JPanel card2 = new JPanel();
            card2.add(name=new JTextField("", 20));
            JPanel card3 = new JPanel();
            card3.add(number=new JTextField("", 20));
            JPanel card4 = new JPanel();
            card4.add(new JCheckBox("Lettuce"));
            card4.add(new JCheckBox("Tomato"));
            card4.add(new JCheckBox("Onion"));
            card4.add(new JButton("Submit Order"));
            //Create the panel that contains the cards
            cards = new JPanel(new CardLayout());
            cards.add(card1, BUTTONPANEL);
            cards.add(card2, TEXTPANEL);
            cards.add(card3, TEXTPANEL2);
            cards.add(card4, CHECKPANEL);
            pane.add(comboBoxPane, BorderLayout.PAGE_START);
            pane.add(cards, BorderLayout.CENTER);
        public void actionPerformed (ActionEvent e)
        if(e.getSource()==beef){
        public void itemStateChanged(ItemEvent evt) {
            CardLayout cl = (CardLayout)(cards.getLayout());
            cl.show(cards, (String)evt.getItem());
        private static void createAndShowGUI() {
            JFrame frame = new JFrame("swingMakeup");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            swingMakeup demo = new swingMakeup();
            demo.addComponentToPane(frame.getContentPane());
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • BI Publisher: how to get Oracle database data row as interval in report

    Dear everyone,
    I am new to BI publisher and trying to get a data from Oracle table and display it as cumulative columns in a report. But stuck at this, please help, detail as below:
    Example: this is a sample of database table taken from Primavera application ODS
    == Activity ID == Start == End == Budgeted_Labor_Unit == Remaining_Labor_Unit
    == A1000 == 01-Jan-10 == 30-Jan-10 == 1000 == 500
    == A1000 == 01-Feb-10 == 28-Feb-10 == 1500 == 500
    == A1010 == 01-Jan-10 == 30-Jan-10 == 500 == 500
    == A1010 == 01-Feb-10 == 28-Feb-10 == 100 == 100
    How to make a report in BI Publisher and display above data as below:
    == Activity ID == Jan-2010 Budgeted == Feb-2010 Budgeted
    == A1000 == 1000 == 1500
    == A1010 == 500 == 100
    Is this possible in BI and how to do that, please help!!!
    Best Regards,
    Duy

    Hi ,
    OEM starts gathering the data after agent is installed and management packs are applied on the database.
    So you cannot get the data before the agent installation.
    Apart from that, if you go on to the database home page, the click on metric collection errors.
    Most of the time you will find many metric collection error regarding to the targets.
    I had faced the similar issue and agent was not able to capture the space usage due to metric collection error.
    Please search on metalink and metric collection error may be due to some bug/permission issue.
    Once all metric collection issues are resolved, and management packs are enabled then you can see the reports.
    Regards
    Rajesh

  • Suggestions on creating a data visualization solution

    Hello All,
    A website provides to its surfers some data (statistics actually) in form of .xls documents.The data is actually some stats like say in one excel that covers one social welfare scheme you would have one row for a state/region of a country and different columns like Total money allocated by the federal govt, TM sanctioned by a regional govt, Money allocated to a city authority , money that actually went to the end user..  stuff like that. The columns run to many in some cases and there is different kinds of such data.
    After I came in touch with this data I realised that the hard work done by the guys who gathered this data, gets ignored because of not so friendly data format. The end user is supposed to crunch numbers and that too after labouring between the excel cells. I am thinking of some way in which this data could be made more presentable. I was suggested by a developer friend to check if flex could be used and thats how I arrived here.
     I myself work on Linux based systems and have also coded in Perl. I can't pay for the licensed version of Flex with IDE so I will go for SDK.
    Could you guys could tell me if flex would be the right choice for the this kind of problem,  in which case I would dig further to study Flex and AS.
    Suggestion and comments are more than welcome
    -Pranab

    This is really an infographic design problem rather than just one of pure technology. Flex could help you or you could use Flash, but you need to look to using good inforgaphics with a drill down capability. It's not straight-forward. There is no magic-bullet capability in Flex to make this data easily accessible.

  • Date & Time - Set Automatically Not Working

    I'm experiencing some very quirky behviour with the time that appears on status bar on the home screen and the world clocks.
    Ever since the DST change on the weekend my iPhone no longer acquires the correct time from the network when I have "set automatically" enabled for Date & Time. Prior to this I have traveled through various time zones and the correct time would always be displayed. Even on the World Clocks.
    Now the iPhone acquires time that is -1hr. However, all the World Clocks appear correct (even for the local city that I'm in).
    If I disable "set automatically" and select the city I'm in everything returns to normal and the World Clocks continue to function.
    Since I travel a lot it really bothers me that the set automatically doesn't work and I would really like a long term solution so I can keep it enabled.
    In the meantime, can anyone help explain the following:
    1. How is time stored on the iPhone? Is it set to local time or GMT with a timezone offset?
    2. How does it acquire time and timezone from the carrier?
    3. How does it determine the time to display on the status bar and screen saver?
    4. How does it determine the time to display for the World Clocks?
    I am running firmware 1.1.4

    I am currently in Winnipeg, Manitoba. Current timezone is UTC/GMT -5 (CDT - Central Daylight Time).
    When date & time is set to automatic, the time in the status bar is incorrect for Winnipeg by -1 hr. All the times in the World Clock are correct (including the display for Winnipeg).
    I recall an issue I had when using Bootcamp on my Macbook. The Macbook records system time (and all time stamps) in UTC/GMT but displays the correct time once you specify the timezone offset. This caused problems when booting back and forth with Windows because Windows assumed the system clock was set to the local time (I now use VMWare Fusion). This issue was well documented on the Apple site.
    I'm assuming the iPhone behaves similar to my Macbook and Mac OS and expects the system time to be set as UTC/GMT. The behaviour I'm experiencing suggests the UTC/GMT time is actually being set correctly on the iPhone (otherwise, the world clocks wouldn't display the correct time) but the timezone offset is incorrect for Winnipeg (which determines how it's displayed in the status bar).
    I did some significant troubleshooting last night and gathered some data to further explain the problem. However, I fear that if I post it publicly the thread may be deleted.

  • HTTPS XMLHttpRequests at localhost return no data

    I made myself an userscript that gathers certain data from websites I browse and stores them in cache on localhost.
    First I used to make standart cross-site HTTP XMLHttpRequests, however the firefox has implemented another XHR restriction that prevents me from doing so - mixed content blocking.
    However, [https://support.mozilla.org/en-US/kb/how-does-content-isnt-secure-affect-my-safety?as=u&utm_source=inproduct on firefox blog] I saw information, that HTTPS requests are considered safe and are not blocked. So I added security exception for localhost, and changed requests to https requests. (and even https requests from localhost to localhost behave that way)
    Now the requests are being sent properly, but no data are received from server. Why is that? How many security policies has firefox put in front of me?
    Oh and sorry guys, I've forgotten to specify error messages upon each situation:
    '''a)''' Cross-site http request: "''Blocked mixed content...''"
    Normal http request within localhost works.
    '''b)''' Cross-site and normal https request: "''Certificate not trusted beacuse its self signed''"
    '''c)''' Cross-site and normal https request with certificate exception: nothing. Not even a notice.''

    '''About error messages:''' I'm sorry, I've forgotten to mention this. I'm actually posting here because I did not receive any error for the last situation.
    The security exception for localhost is just standart exception that is made by hitting site with "https://" in the adress bar. If you do this for a site, evil dialog will ask you whether you know what are you doing and if you say that you do, you get that exception/
    Maybe I'll try to make a demo for this problem, but I'm not ure how it's gonna behave online.

  • LiveCycle 2.6.1 Data Management with The ColdFusion 8.0 DataManagement Event Gateway Issue

    Hello all,
         I've recently been developing a project that involves sending out events from ColdFusion to LiveCycle 2.6.1 using the Data Management event gateway to Flex 4.0 clients (LiveCycle and ColdFusion are on different Instances, but the same server).  To begin with, I used ColdFusion assemblers, DAO's, and models and everything worked fine locally.  After deploying this setup to a beta site, I decided that this setup would be very troublesome in terms of configuring clustered instances across multiple servers.  I then decided to convert my assemblers, DAO's, and models to Java.  The conversion went well and the flex clients see the exact same data as they did with the ColdFusion adapter.
         Once I tried to send an update through from my ColdFusion application to a Flex client, I get an error stating that:
    "Unable to find the Flex adapter for destination My_Dest in the RMI registry on localhost:1099.The Flex adapter may not be running or the destination may be incorrect."
    After seeing this error, downloaded a Java-based RMI inspector to see what was going on.  To get a good idea of what was happening when the ColdFusion adapter was being used, I switched my data-management-config file back to the CF adapter.  I noticed that the RMI entry was as follows:
    localhost:1099/cfdataserviceadapter/My_Dest
    localhost:1099/cfassembler/my_cf_instance
    Once I gathered this data as the base, I converted back to the Java adapter in my data-management-config file, restarted the servers, and ran the RMI inspector again.  Only the "localhost:1099/cfassembler/my_cf_instance" was showing.  (This one shows because I have "Enable Remote Adobe LiveCycle Data Management Access" checked in my CF instance's CF Admin -> Flex Integration).  Since I don't need this checked anymore, I unchecked it and re-ran the RMI inspector.  As it should, the "localhost:1099/cfdataserviceadapter/My_Dest" went away.  Since no destination shows up, it means that the Flex adapter isn't registering my "my_Dest" destination with RMI.  Since it isn't registered, I can't see it when I try to send a message through the CF Data Management event gateway.
    Can anyone help me out here?  I certainly may be missing something when it comes to RMI (I don't work with Java very often).  Any advice would be greatly appreciated!
    Thank you,
    Dustin Blomquist

    Dustin,
    Without the ColdFusion based data management destination defined on the LCDS server, the destination will not show up in the RMI registry.  It is only the CF adapter code that does this.  The 'stock' LCDS adapter does not support invoking via RMI the way the CF version does.
    I would recommend you run the LCDS MessageBrokerServlet inside the ColdFusion web application.  This will give you two things:
    1. You will not have the overhead of RMI between CF and LCDS as they will share the same VM (better performance!).
    2. You will be able to use the CF Data Management Gateway to pass messages to Java-based destinations.  The APIs the gateway uses should work fine with either CF or Java based Data Management destinations.
    The CF/LCDS integration doesn't support what you are trying to do when you run two seperate instances.

  • Writing data to Microsoft SQL Server/Dat​abase

    Hi All
    I have written a program in LV ver 6.1 that carries out various functional tests and at each test gathers 3 data values. At the moment the data is gathered at each stage of the test and written in a concatenated string to a file that was opened at the start of the test routine. What I need to do is output the data such that it is compatable with SQL server (presumably in some form of table?). I have read previous posts but they recommed the ni database toolkit, which I do not have. Should I be using the XML vi to take the string of data or use the active x vi? I have read in other posts that you can manage without the ni database toolkit but would need to program a database structure. My knowledge of database development is nil and I wondered if there was a vi that could be used that would create tables that could be directly interpreted by MS SQL?
    Labview Version 8.5
    Labview Version 8.6
    Labview Version 2013

    I'm having trouble understanding exactly what you're doing, but I will try to explain a few things:
    Ideally code written for database connectivity should not be included in my Labview code or problems could occur if my client changed his servers , database structure etc.
    The code can be yours. If you do write it, just make sure to create subVIs, so that if the DB structure does change (something which is rare), you will only need to change the code inside the subVIs.
    Microsoft SQL server is an intermediate piece of software that allows my Labview code to access the database without actually 'seeing' it. With my client using SQL server they can modify the way my Labview code sends data to their database if they decide to change their servers, database structure etc.
    SQL Server is the DB management system. It holds all the tables, queries, etc. and is responsible for actually managing the DB itself.
    What Dennis suggested was that the DB guy will write something known as a "stored procedure" and that you will call it.
    In such a case, if the DB guy wanted to change something, he could just change the stored procedure and (if the change does not affect the interface), you do not have to change or rebuild your program. This is equivalent to the subVIs I described earlier, except in this case, the function is inside the DB itself.
    Another version of this is creating a table with SQL commands and assigning a name for each command. You load the SQL command from the table by name and execute it. This allows for changing the SQL command inside the DB without changing your application.
    ADO connectivity is used and the connection string is best located in the windows registry file. Presumably this option would give my client the most flexiblity? Is this the same thing as the .udl file?
    Basically, the scheme is like this:
    DB <-> DBMS <-> ODBC <-> ADO <-> Your Application
    This may not be perfectly accurate, but the concept is basically this - in Windows, you talk to ANY database from ANY program using the same interface - you call ADO functions which will be responsible for getting to the DB you want and you use SQL to issue the commands, since the basic SQL commands are supported by all DBs.
    To identify the DB, you use a connection string. This connection string can have all the data in it or it can point to an existing file (UDL or DSN) which holds the data pointing to the DB. Dennis suggested that when developing on your machine, you will use a file pointing to a local DB, but when deploying you will use a file of the same name which will point to the real DB. Your program will always go to the file and from there it will know which DB to go to.
    The only time when this should really matter to the client is during configuration (for example, if the DB was moved to a different machine). All the client needs to do is edit the UDL file to point at the new location of the DB.
    Again, the advantage of all this is that this is not part of your code and is done by programs which are built to handle it.
    It is more efficient to use the Parameterized database technique such as the example given in the 'logging example parameterized'
    I don't know how much this efficiency will be relevant in the speeds you need.
    In any case, as I said, my own preference is to create functional subVIs - for example, a VI which will accept data in my format and will be responsible internally for converting that data and putting it into the necessary tables.
    I have sent my client an outline of the data to be saved on their database, which at the moment comprises of 3 tables, the first has things like operators name, date, time, serial number etc ( 7 records, 3 fields) the second table has test reference (11 tests in total) with items such as fuel flow, fuel temp etc (11 records, 5 fields), Last table has 1 record and 6 fields. Unlike the Labview example each stage of the test can take up to 4 minutes to complete and if successfull the program moves on to the next stage of the test, saving the test results and if a PASS or FAIL occurred. The question I have is would it more efficient to save the results at the end of all of the tests or shold I connect to their database and save results as the tests progress?
    I can't say I understand this, but my suggestion would be to let the client decide in what format they want the data, since they're the ones who want it. Work with the DB guy to decide exactly what data you need to put into the DB and where and then you can decide exactly which functions you need. As said, you might want to let the DB guy write some stored procedures which you can use to input the data.
    Unless it's a large amount of data, writing to a DB is usually fairly quick (under a second). If it is relevant, my suggestion would be to write after each phase.
    In any case, I suggest you go through some real DB tutorials (not LV related) and see if you can wrap your head about it. I know I don't particularly like designing DBs (or PID) any more than you do, but it's a skill worth having, and in some places, a DB makes things easy and practical.
    Try to take over the world!

  • Date & Time Set Automatically locate me in China!

    I upgraded my iTouch 4G to iOs 5 the other day. A couple of days later, in the middle of the night, the time zone switched to Shanghai and I missed my doctor's appointment because the iPod thought I was in China. Now, I live in Reykjavík, Iceland, nowhere near China. What the heck has happened? I switched 'Set Automatically" off and set it to Reykjavík and it works fine. Still, when I use the Facebook app my location is Shenyang, Liaoning, China!
    Is this an iOs 5 glitch or what the heck is going on? I've tried it over a different wifi and it's the same thing.

    I am currently in Winnipeg, Manitoba. Current timezone is UTC/GMT -5 (CDT - Central Daylight Time).
    When date & time is set to automatic, the time in the status bar is incorrect for Winnipeg by -1 hr. All the times in the World Clock are correct (including the display for Winnipeg).
    I recall an issue I had when using Bootcamp on my Macbook. The Macbook records system time (and all time stamps) in UTC/GMT but displays the correct time once you specify the timezone offset. This caused problems when booting back and forth with Windows because Windows assumed the system clock was set to the local time (I now use VMWare Fusion). This issue was well documented on the Apple site.
    I'm assuming the iPhone behaves similar to my Macbook and Mac OS and expects the system time to be set as UTC/GMT. The behaviour I'm experiencing suggests the UTC/GMT time is actually being set correctly on the iPhone (otherwise, the world clocks wouldn't display the correct time) but the timezone offset is incorrect for Winnipeg (which determines how it's displayed in the status bar).
    I did some significant troubleshooting last night and gathered some data to further explain the problem. However, I fear that if I post it publicly the thread may be deleted.

  • How do I automatically save array data to a spreadsheet?

    I am setting up a 24 hour test where I would like the gathered array data to automatically save to a spreadsheet every 4 hours. Is there a way to set this up with the Write to Spreadsheet file.vi?
    Solved!
    Go to Solution.

    Sure, you just need a timer that will  tell you when the 4 hours are up.  Take a look at the attached timer, I picked it up on these forums a while ago but I cant remeber who to give credit to for it*.  Just use this timer to trigger a case structure holding the write to spreadsheet function.
    *It is from Bloomy controls
    Message Edited by jmcbee on 03-17-2009 09:39 AM
    CLA, CLED, CTD,CPI, LabVIEW Champion
    Platinum Alliance Partner
    Senior Engineer
    Using LV 2013, 2012
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.
    Attachments:
    Interval Timer.vi ‏21 KB
    Delta Time.vi ‏22 KB

  • Line Chart - getting data from two table to behave as 1 data series

    I'm using the 'Personal Budget' template, and have two tables titled 'Annual Budget by Month: 2009' and 'Annual Budget by Month: 2010'. These tables show, as their last row, my total savings. I want to set up a line chart to display the (downward) trajectory of my savings in one continuous line.
    However, if I create a line chart, the two data sets from the two tables are displayed as two lines, one below the other. If I convert it to a column chart, and then switch to columns instead of rows as the Plotting Orientation (data series button in the upper left of the table), the columns do display correctly. Can anyone tell me how I can get the line version to work?

    spiff,
    I think the solution to your problem is to create a summary table that gathers the data from all your month tables, then plot the summary. Remember to put the category names into a Header row or column so they will automatically show up on the chart axes.
    Jerry

  • Specifying user-ID for gathering perfmon statistics from windows servers?

    When using OATS Load Testing to gather statistics from Windows servers (perfmon stats), the user-Id the Load Testing server is running under must be a member of the Performance Monitoring group on all the Windows servers I am trying to monitor. I have a standard user-ID I use for this kind of monitoring. It is automatically setup on all the servers in our enterprise. Where do I specify this user-ID and password in OATS Load Testing?
    The only reference I can find in the documentation says to change the user-ID and apassword in the Oracle Load Testing Agent Serivce. I don't think this is what I want. And, there is no service called "Oracle Load Testing Agent Service" installed on my server anyway.
    Thanks for the help!

    To gather any Server Stats (i.e. perfmon) data the OLT controller must communicate with a data collector process. The data collector process is olt-dc-java-agent.exe, which I recall is also kicked off by the Agent Manager Service (just like it does for the javaagent load agent process). I think you have configured the collecting of server stats data to be collected from a remote agent machine, which is fine, but you could configure SS to collect from the service running on the OLT (oats controller) machine.
    There is a reason why the DC processes can be separated from the OLT machine. If you testing and SS collecting in a single subnet environment, then it is fine to default your OLT/SS environment to use this single OLT AgentManagerService/DCollector configuration. Though, in the case where the servers you need to collect from are behind a firewall, you will need to install that AgentManagerService/DCollector combo on a machine behind the firewall, and also configure OLT/SS to talk to that 2nd data collector. A second example is when you are collecting so much data that the single data collector is stressed. So in that case simply creating a 2nd data collector machine will distribute the gathering of data.
    btw, you should consider not using your Network UserID/Pass for authenticating the agent manager service. Best practice is to ask your IT to create a special user/pass to handle the server stats needs. Then there is no conflict if you change your password in the future.

  • Email accessibility data

    Hi All,
    We're running exchange 2010 w/ SP3.
    We have a requirement of gathering the data of
    who is accessing emails using what ip address and using which device (outlook, mobile, owa etc)?
    What is the best and easiest way to do this?
    Thanks, Vik

    Hello,
    You can use logpraser or iis log .
    Here is a blog for your reference.
    https://blogs.technet.com/b/exchange/archive/2012/03/07/introducing-log-parser-studio.aspx
    Cara Chen
    TechNet Community Support

Maybe you are looking for