I'm using the quarkus-logging-json artifact. Is there a way to add custom fields in the json logs?
There isn't such a capability. You are welcome to open an issue on Github with the details of what you are trying to do.
Related
I would like to add some custom tabs(template) in my keycloak? But i cant find the solution. Is anyone here who could help me with this.
Your screenshot suggest that you are still using the old account console. I recommend to upgrade to the new account console which supports adding additional tabs quite easily. Take a look at this blog post for details and check out this quickstart example to get going.
I am aware that JIRA dataset is in beta stage right now in Data factory. But still is there any way to pull the custom fields data?
Right now when i am copying JIRA issues data it is giving me only the standard fields present in any of the Issue.
I want custom fields too. Any way?
So through hit and trial, i got to know that tables that starts with 'Extras- ' are the ones which has custom fields and that too masked. Again through hit and trial I figured which field value I wanted to extract.
You can try the advanced tab.
For linked service:
advanced tab for linked service
For dataset:
advanced tab for dataset
I am started working on positional parser talend 6.4.1. As i am gone read data from dynamic schema so i need tSetDynamicSchema component to proceed further. But i cant see tSetDynamicSchema component in the Tool. Can anyone help me to add this component to tool?
Unfortunately tSetDynamicSchema is only available in Talend subscription (entreprise) version. in Talend Open Studio, you need to define your schema at design time.
I have created one ADT for asset publisher and here im fetching all the documents from a specific folder ,here my problem is that we want to use existing pagination,we have configured the simple pagination, but still the result not coming properly.so is there any alternate way to use the existing pagination with our custom ADT.
Thanks & Regards,
P.v.B.Raju.
As far as I know, there is no way to paginate in Freemarker by default. For custom pagination, you have to override Liferay's core JSP here, which is very unfortunate. If you've found another solution, please share it here.
I am building a report with pdfMake in which I need to include some charts rendered at the web page with fusioncharts. The available client-side export options provided by fusioncharts aren't working for me because I need to obtain the image file (or base64) somehow to pass it to the function building the document, without having to retrieve it elsewhere.
I understand that fusioncharts have server-side export options, but I haven't found guidence or clear info about if this is kind of the start to the solution I am looking for.
AMcharts has the 'export to base64' feature just the way I need (link below); so any help, tips, solution or workaround to get it done with fusioncharts would be really appreciated.
https://www.amcharts.com/kbase/get-base64-representation-chart-image/
You can get Base64 string data for FusionChart chart by consuming its API method getSVGString, using this method you will get SVG string for the chart which you can convert to Base64 string using JS via window.btoa().
JSFiddle: http://jsfiddle.net/sikrigagan/2ovov3nL/
To know more about this method, check this developer documentation page.