AWS Quicksight: Disable excel downloads - amazon-quicksight

AWS Quicksight has an option to export reports over excel and csv. Excel has limitation that only upto 40k rows can be downloaded. If the data is more than that it gets truncated and gives a wrong message to user if he/she don't know it's truncated. Where as csv has much more limit (1 million rows).
So I'm thinking to disable excel download option and to keep only csv download enabled. I checked multiple options. But I can see only option to enable/disable csv downloads.
Is there a way I can disable excel downloads?

I don't believe that is possible. Checking the API Documentation there is a ExportToCSVOption option, but no excel option documented.

Related

Any global reporting format to show the JMeter performance result?

I am not able to show the report to the management team in proper format. if you guys have any standared format or global format then please suggest me.
JMeter's .jtl results file is basically a CSV file containing Sampler start time, elapsed time, connect time, whether it was successful or not, and so on, the columns can be chosen via Results File Configuration
So you need to ask your management what form of "report" do they expect and generate tables and charts they're looking for.
Some options you can use fully or partially:
JMeter Listeners which can read the .jtl file, do some calculations/plotting and save the output in form of CSV or PNG files
JMeter Plugins Command Line Tool which does the same but provides possibility of automation and some extra charts on top
Graphs Generator Listener
It's possible to generate HTML Reporting Dashboard out of the .jtl results file
There is BlazeMeter Uploader plugin (can be installed using JMeter Plugins Manager) which uploads your test results to BlazeMeter and you can export a management-friendly report from there
And last but not the least you can use MS Excel or equivalent to produce whatever output you want

Open Kibana Console with queries from JSON file?

Is it possible to save a bunch of queries into a single JSON file to import in Kibana Console?
I know there's an option to save a single query[2] and the Kibana console is based on local storage, but I would like to load up the queries based on parameters, such that changing the params(e.g load_from=filename.json) should load up a different set of queries.
For example, when I open http://localhost:5601/app/kibana#/dev_tools/console?load_from=filename.json, it should open the Kibana console with ES queries from the file.
EDIT: As a workaround, it's possible to do this with Postman API Client or similar API clients.
Solution:
EDIT 2 on 22/02/2022: Kibana Spaces is the answer. It lets you organize dashboards and other saved objects into meaningful categories[3]. Whenever you load http://localhost:5601/ it lets you choose the space you want to work with. Having multiple browser tabs with different saved spaces should work for most cases.
[2] https://www.elastic.co/guide/en/kibana/master/save-load-delete-query.html
[3] https://www.elastic.co/guide/en/kibana/master/xpack-spaces.html
Unfortunately, that's not possible yet.
Elastic is (supposedly) working on a new Kibana feature (tabbed console panes #10095) that will provide support for better organizing the code in the Dev Tools application. The issue has been opened for a while and not much seems to be happening, so we'll see.
The release date of that feature is not known yet.

How can download oracle apex report as PDF?

I have created a Interactive Report page on oracle apex 5.1.4 on my local environment [ windows 10]. I have retrieved data on that page using custom SQL query from different tables. Now I want to download report as PDF using Download option [ Image-1 ]. PDF file is downloading fine but PDF file is not opening. [ Image-2 ]
Note that, In the Instance Settings- Print Server is selected as External Apache (FOP).
I did not get any resources on this topic, Any solution?
If the setting is set to external print server, do you have a print server configured? has that print server been verified to work correctly?
If these are not true, then have you configured apex to use ORDS? If yes then you should be able to set the print server settings to ORDS. You do not get a ton of configuration options out of the box, but you do get a PDF.
Have a look at Dimitri Gielis' blog, Export your APEX Interactive Report to PDF. It seems that your case is described in his case #2:
... you will need to configure a print server like BI Publisher or
Apache-FOP.
How to configure it? No idea, it's beyond my knowledge.

Alfresco - Download statistics and user permissions report

Hey to every alfresco pro out there!
Is there any way to create a report (graphical or textually, i don't care) to see the following information:
download count per file
how many times did user X download a specific file
which permissions do the users have
Are my goals easy to realize? Is there any plugin out there that i can use for this? (Already searched for some but couldn't find one) Hope that you can help me :)
mtzE
There is nothing out-of-the-box that is counting downloads. Maybe the audit service can be used to count reads, but you'll have to turn it on and configure it. Once turned on, the audit service writes records to a set of audit tables in your Alfresco database. You can then use any reporting tool to query those tables.
If you want to check the permissions a user has you can use something like OpenCMIS to connect to the repository, traverse a folder path, and then, for each object, you can inspect the ACL of that object to use as data in your report.
As Lista said, one way to create such reports is to use AAAR, but that is not required.

GAE/J file store

I am working on a GAE/J based project. One of the requirements is to let the users upload files (doc,ppt,pdf,xls etc).
What options do I have for storing files besides http://code.google.com/p/gae-filestore/
Is it possible to make these files "searchable"?
Blobstore service. It stores files up to 2GB, and its API was intended for user uploaded files. See: http://code.google.com/appengine/docs/java/blobstore/overview.html It isn't indexed, but I believe that some people have been able use Map/Reduce with it: http://ikaisays.com/2010/08/11/using-the-app-engine-mapper-for-bulk-data-import/
Datastore. You can store up to 1 MB as a "blob property".

Resources