Charts/Graphs on Logentry server - charts

Is it possible to fetch charts which show on logentries server using API ?
I have a requirement where we need to show such usage charts on a custom application, am wondering if I can get the charts directly from logentries ?
If that is not possible, is it possible to get filtered/plotted data using which we can generate our own charts ?

Should be doable with the Export function for charts. Note that some search queries are not exportable at the moment
https://logentries.com/doc/shareable-dashboards/#share_dashboard

Checked with Logenteries team, charts api are not there in production as yet.

Related

How to extract view meta data from tableau

I need to extract metadata from view. When I was reading tableau rest API documentation there is no ways mention in the rest api for sheet metadata and also not mention measure and dimension API extraction. If anyone knows the way how to extract data please help me
Take a look at the Tableau Javascript API...specifically the getData method.
The Rest API is used for automating Tableau Server tasks (add users, create schedules, set permissions, etc).
You can embed a hidden extension into your dashboard that can access worksheet, field and filter information. See the docs on extensions here.
Here is a good example of one that could get you started on pulling the worksheet and field information.
Use the Tableau Metadata API - https://help.tableau.com/current/api/metadata_api/en-us/index.html
You can find sample scripts here - https://github.com/tableau/metadata-api-samples

How to embed MongoDB charts into application

I created charts in MongoDB Charts, but do not know how to use those charts in my web application. Are there ways to publish MongoDB charts to a link where everyone can access without logging in?
Many thanks
Are there ways to publish MongoDB charts to a link where everyone can access without logging in?
In MongoDB Charts version 0.10 , there is no way to publish charts into external web site/application.
In regards to permissions, that would include setting read role on the chart's data sources for everyone too. See also Charts Dashboard Permissions
UPDATE:
Now you can use the Embedding feature to render the charts in an external web application. When you embed a chart, you can choose whether you want it to be Unauthenticated (meaning anyone who has the embed code can view the chart), or to use Verified Signature authentication (which checks the integrity of a signature in the URL before the chart will render). See Charts Embedding Examples for more information.

How do I create custom charts tracking metrics in AWS Mobile Analytics?

My iOS app is creating events with a performance based metric. I see this added to the eventsFile and it also appears in the "Custom Events" tab.
However, I cannot create a custom chart that lets me track these metrics. Is this possible, and if so, how?
Unfortunately this functionality is not available out of the box within the Amazon Mobile Analytics console.
As a work-around you could enable auto-export to S3/RedShift and generate the visualizations you're interested in externally.
I suggest having the S3 export enabled at all times, and enabling the RedShift export when needed.

Yahoo Finance API like chart

I want to create a chart very similar to yahoo Finance interactive chart in a .NET application. The interactive chart on Yahoo finance is not included in their developer API. Has anyone tried to leverage their API to create a similar chart? Although the chart is very much like the one used on Yahoo, the data used for my analysis is not Stock data. So, I will not be able to call the Yahoo Url by feeding any query params.
Any suggestions?
If your looking at a web based chart, the flot graphs for jQuery are a good option IMHO. They look pretty schnazzy, are interactive and are very simple to get working.
http://plugins.jquery.com/project/flot
amCharts Stock chart is of the same breed. It's Flash based but you can easily use it with any server side engine. Not sure whether you are looking for web or windows solution though.
You might consider Infragistics Web Charts also.

How Create Charts with the Google Chart API in asp.net?

How to Creat Charts with the Google Chart API in asp.net?
Google is a good place to start...
Google Charts API as ASP.NET 2.0 Server Control
Google Chart Net
Or better yet use the new ASP.NET charting control
ASP.NET Charting Control
Please refer the article on 4guysfromrolla
Creating charts with Google chart API with ASP.NET
ASP.NET Custom Server Control for Google chart
FYI there are plenty of Google Chart API wrapper APIs that will make your life easier in terms of dealing with low-level Google Chart API details. I wrote one the Java side (called charts4j). But there is also at least one wrapper API in the .NET arena.
I am not completely familiar with the ASP .Net stack, but you will probably want to generate the the Google Chart URL server side, and display that URL with your HTML view technology in an image tag. The alternative is to pass the data to the browser and construct the chart URL with javascript, but this is likely to be more tedious and error prone. Hope that helps.
It is not that hard, things to consider are
1. Build up your data table for chart and save it to Json format
2. Use jquery function getJson to retrieve it, then follow google API on how to
Parse Json file, then there is the graph
I built lots of graphs by using this method using C#