Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
What is the maximum numbe...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-28-2022, 07:59 AM
» Replies: 0
» Views: 8,015
|
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,183
|
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,225
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:47 PM
» Replies: 0
» Views: 3,175
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:46 PM
» Replies: 0
» Views: 3,233
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:45 PM
» Replies: 0
» Views: 2,251
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:44 PM
» Replies: 0
» Views: 2,229
|
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,203
|
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,083
|
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,085
|
|
|
Deleting Kafka topics |
Posted by: Athi - 12-23-2022, 11:12 AM - Forum: BDB Data Pipeline Q & A
- No Replies
|
|
A kafka topic created from pipeline and later user is deleting it is that a hard delete from that Kafka cluster or its just soft delete from UI?
How does it behave for a mapped event?
A topic which is created inside a pipeline and user is deleting it from event panel does a hard delete of topic from the cluster
While if its a mapped event to that pipeline it's a soft delete from UI, topics will still exist in cluster
|
|
|
How to do API Ingestion Dashboard Designer Module? |
Posted by: archana - 12-23-2022, 11:11 AM - Forum: BDB Designer Q & A
- No Replies
|
|
var settings = {
"url": "https://app.bdb.ai/ingestion/dataIngestion",
"method": "POST",
"timeout": 0,
"headers": {
"IngestionId": "Enter ingestion id ",
"IngestionSecret": "Enter ingestion secret",
"Content-Type": "application/json"
},
"data": JSON.stringify([
{
"employee_name": a
}
]),
};
$.ajax(settings).done(function (response) {
console.log(response);
});
|
|
|
How to configure websocket in dashboard? |
Posted by: jeevitha - 12-23-2022, 11:11 AM - Forum: BDB Designer Q & A
- No Replies
|
|
-> In Dashboard Designer Module, under Data Connectors, in Web SocketProvide the URL
- In Scripting Side, using the component Id:
if(all_data[0].dp_id=='comp1667369588969_inst_7254')
{
var data1 = changedItem.attributes.data;
console.log(data1);
}
|
|
|
Custom tooltip for the chart with HTML tags. |
Posted by: Asma M - 12-23-2022, 11:10 AM - Forum: BDB Designer Q & A
- No Replies
|
|
Add the legends
"<p><font color=""#282830""><b>Trip start </b>: [trip_start_time]</font></p>
<p style=""font-size: 14px;""><font color=""#282830""><b>Trip end</b> : [trip_end_time]</font></p>
<p style=""font-size: 14px;""><font color=""#282830""><hr></font></p><!--EndFragment-->
<p style=""font-size: 14px;""><font color=""#282830""><b>Trip distance (km)</b> : <span style=""font-size: 14px;float: none;"">[distance_km]</span></font></p>
<p style=""font-size: 14px;""><font color=""#282830""><b>Duration (mn)</b> : [total_time_mn] </font></p>
<p><font color=""#282830""><b>Max speed (kph)</b> : [max_speed]</font></p>
<p><span style=""font-size: 14px;float: none;""><font color=""#282830""><b>Avg speed (kph)</b> : [avgspeed]</font></span></p>
<p><font color=""#282830""><b>Fuel consumption (L) </b>: [fuel_consumption]</font><hr ></p>
<p><svg height=""15"" width=""15""> <circle cx=""7"" cy=""10"" r=""5"" stroke=""black"" stroke-width=""0"" fill=""#ff0022""></circle></svg><b><font color=""#282830"">  Warning lamp</font> </b>: <span style=""font-size: 14px;float: none;"">[warning_red]<span style=""font-size: 14px;float: none;""><hr ></span></span> <svg height=""15"" width=""15""> <circle cx=""7"" cy=""10"" r=""5"" stroke=""black"" stroke-width=""0"" fill=""#f9af46""></circle></svg><b><font color=""#282830"">  Warning lamp</font> </b>: [warning_orange]</p>"
|
|
|
How to configure parent child dashboard? |
Posted by: jeevitha - 12-23-2022, 11:09 AM - Forum: BDB Designer Q & A
- No Replies
|
|
-> In the parent dashboard:
sdk.setContext('parm', changedItem.attributes._id );
var customer =sdk.getContext( 'parm' );
//alert(customer);
var a=sdk.getContext('dashboard_user').apiToken;
var b=window.location.origin;
var c="/home/#/opendocument?docid=544669703&doctype=2&token=";
var v3=b+c+a+ '&id=' +customer;
//alert(v3);
window.open(v3,'_blank')
Fetch the data in child dashboard
var v3=parent.window.location.href;
//alert(v3);
function getParam( name, url )
{
if (!url) url = location.href;
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS );
var results = regex.exec( url );
return results == null ? null : results[1];
}
var ap=getParam('id',v3);
//alert(ap);
sdk.setContext('pass', ap);
|
|
|
|