Join the conversations to shape a safer, more efficient, and sustainable industrial future!
Recently active
Is there a way to delete the relationship between an instance and a container? Let’s say I have a view Foo in one data model and another view FooExtension in another data model. FooExtension implements Foo.I have an instance of externalId “FOO”, space: “FOO-DAT” that have data stored in both views/containers.If it was no longer necessary to store data in container FooExtension is there a way to just delete this relationship in a way that `hasData(FooExtension)` from the DMS Query doesn’t find this instance anymore without affecting the data stored in Foo and the instance itself? Since instance count is limited, it’s becoming more common in our project modeling things having the mindset of shared instance when they mean the same thing across data models but with different formats to present the data on different Apps. But sometimes we don’t want to have the data in the app anymore and virtual deletion (boolean flags) is not always an option specially when the data volume is big.
Hello, We are a heavy users of Grafana CDF datasource. Are you planning to support alerting anytime soon? Thanks !
Below I have attached three screeshots where I query same data in same time range. I have used Queries in first screenshot, and it corresponds to original data inspected in Charts, i.e. there is no data before 4:01. This is very basic query using external id. However in many cases we need custome query where we use parametrised syntax. I have used a very basic syntax in the second screenshot that only use external id to query same timeseries as first screenshot. But the result is clearly different, there are datapoints created where there should be no data. Inspecting the datapoints in query, I see real data points with some values are created in no data area! Disabling aggregate resolve problem of creating non exiting data in third screenshot but then it query all datapoints and saturates in 2 seconds (reach max datapoints that grafana can show). So I need aggregated data and I have tried aggregate inside the syntax and same problem in scheenshot2 persists in this case. Any idea how
I checked the Data Management UI in CDF Fusion. There is a list of data models in the PublicData project.There, I found the Cognite Core Data Model, where the schema is well-defined, but the instance has no data.I want to explore a GraphQL query using this data model—for assets with their hierarchy and related entities such as time series and files.However, since there is no data, I am not sure how to proceed. Could you please guide me on how to solve this?if we need transform data we need permission for the write
Hi Cognite Community,We will be performing scheduled upgrade today from 4:00 PM to 8:00 PM CEST. Our platform will be temporarily unavailable. We appreciate your patience.
Hi Canvas Team - Do we have the ability to make a public canvas that has the ability for the owners to lock & unlock it (making it essentially read only)? Examples of this will include the ability to save a work package, turnaround package, reliability root-cause analysis, etx that others can see in the future however they can’t edit. The owners (people specifically shared) have the ability to unlock and edit it. Other scenarios are a read-only version of the canvas for other people that are not the owner.
We have outage on Cognite function deployments impacting both Development and UAT environment at PSaas cluster at ADNOC environment.Please refer the below url for the respective env.https://adnoc.fusion.cognite.com/sub-cgnt-panorama-dev/https://adnoc.fusion.cognite.com/sub-cgnt-panorama-uat/This is impacting on our development and UAT testing.kindly do needful asap.Thanks,Palaksha
Workflow to Connect Power BI to FT DataMosaixI am currently experiencing issues connecting Power BI to FT DataMosaix for the project ai200prodtesting-44-datamosaix. I would like to highlight that for the essc-sandbox-44 project, the connection works as expected, as shown in the evidence below.Below is the step-by-step procedure I followed to connect to the ai200prodtesting-44 project:Steps:1. Select Get Data > Cognite Data Fusion (REST API) connector.2. Set up CDF Project and CDF Organization.3. Choose Sign in as a different user.4. Enter user email address.5. Enter user password.6. Click Connect.7. Review the error message: Unable to connect. the message with the error "Unable to connect" attached.
Instead of storing String data as timeseries, we would like to store data in Staging and then transform to Events with addition metadata.Can the existing OPCUA extractor support that?
HiI am testing out event based triggers to see if its a good fit for a use case I am working on. When deploying the trigger the workflow is triggered many times until it has processed the whole input query, however as very many workflow executions are started at the same time, some of them will fail as the limit for running workflows has been reached.How is this handled by the trigger, will the failing workflow runs be retried? If not, is there a setting I can use to limit the amount of concurrent runs?I think this would be good both for distributing the workflow runs out and avoid the failures and also reduce the risk of failing function calls because of high load on the API.Thank you!Sebastian
Is there a way to configure a Hosted HiveMQ Extractor to extract the data into CogniteTimeSeries and not the traditional Time Series?
Sideways scrolling is really cumbersome, why have you made the UI significantly worse?
Hi,I want to set up monitoring of timeseries wrt reservoir levels. Yesterday I also set up a dummy monitoring, simply to test the functionality. I set the monitoring to alert when timeseries is over 1462.88 meters, which was crossed yesterday evening, but no alarms were triggered.Please see screenshot of my setup below, does this seem right? BR,Jørgen Aarstad
Interested in understanding cognite product line, how it is used with industrial automation and IoT system, Very much interested in how GenAI has been integrated.
As illustrated in our documentation, the CDF Records feature uses a Data Modeling container as the schema definition for record data. I.e. you have to create a space and container first, before you start loading Records to a Stream. (Note: It is possible to use multiple containers together to define the schema for a single record. This may make sense in the context of, for instance, a Work Order record).However, at the moment when I write this, using the container based schema represents a somewhat confusing “limitation” when it comes to the size of a container vs the size of a record (number of properties). The way we have implemented this capability in CDF Records at the moment - using the DM containers - comes with a side-effect: The number of properties you can have for a single container is, as of right now, the same as it is in your Data Modeling service.The limits we're documenting in terms of properties for CDF Records are linked to the properties containing data within a singl
This is sample codehow can i give custom input to this python code # Note that the docstring is how the agent knows how to call the function. It follows the Google Python Style Guide:# https://google.github.io/styleguide/pyguide.html#383-functions-and-methods from cognite.client import CogniteClientfrom cognite.client.data_classes.data_modeling import NodeIdfrom cognite.client.data_classes.data_modeling.cdm.v1 import CogniteTimeSeries client = CogniteClient() # Retrieve latest data point by time series node iddef handle(time_series_id: NodeId): """ Retrieves the latest data point for a given time series. Args: time_series_id: The node id of the time series to retrieve the latest data point for. Returns: The latest data point for the given time series. """ datapoint = client.time_series.data.retrieve_latest(instance_id=time_series_id) # Only json serializable data is supported, so we convert the created_data to a dict with .dump(). return d
When running the following lines of code I get an error with Pydantic:from cognite.neat import NeatSessionneat = NeatSession(client)The error is as follows:---------------------------------------------------------------------------ImportError Traceback (most recent call last)Cell In[13], line 1----> 1 from cognite.neat import NeatSession 2 neat = NeatSession(client)File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\cognite\neat\__init__.py:4 1 from cognite.neat.core._utils.auth import get_cognite_client 3 from ._version import __version__----> 4 from .session import NeatSession 6 __all__ = ["NeatSession", "__version__", "get_cognite_client"]File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\cognite\neat\session\__init__.py:1----> 1 from ._base import NeatSession 3 __all__ = ["NeatSession"]File ~\AppData\Local\Programs\Python\Python311\Lib\site-packages\cognite\neat\session\_base.py:9 7 from
Hi Team, We are planning to create Business Continuity and Disaster Recovery document for CDF in our environment and using https://docs.cognite.com/cdf/trust/security/reliability_intro/ But, we are missing some information regarding the RTO and RPO for different scenarios,Full cluster restore CDF project restoreCould you please help us on this.ThanksAbhra
Hello, We recently migrating the way of deployment of Streamlit App in our cdf toolkit project. Before we used to deploy our streamlit app by creating a file in a dedicated dataset. Now we use out of box way of deploying Streamlit Apps provided by cdf toolkit (this was not available before). When changing to this way, we notice that the app is only deployed using “--include streamlit” option.i.e: when not using the “--include streamlit” cdf toolkit the deploy summary is the following: however, we notice it is a previous version that has been deployed! when using “--include streamlit”: summary is the following And the App latest version is deployed as expected. Toolkit Version used is '0.6.20'. Are we missing something? Could you please take a look at this? Thanks!
app.cognite.service: Found 1 data modelIn the publicdatacdm space, only one data model is currently available, which is related to 3D scenes.However, our goal is to create a knowledge graph, which requires asset-related data models. Since the available model is focused on 3D scene configuration, it doesn't cover the necessary asset relationships.To move forward with building a knowledge graph, we need: Asset-centric data models. A clustering mechanism to visualize and structure the knowledge graph meaningfully. Is there any plan to include asset-related models in publicdatacdm, or any recommended approach to achieve this with the current setup?
Hi,In our CDF project, how can we use GraphQL and how we can connect to project in our react appCould you please guide me?Thanks!
Hi Cognite Community,I'm building a React + TypeScript app using Apollo Client to connect to the CDF GraphQL API. It shows a Knowledge Graph of assets, time series, P&ID diagrams, and 3D models using vis-network.✅ I already did this successfully using the Python SDK.Now, I need help with:Setting up the GraphQL endpoint in ReactHandling authentication from the frontendAny simple examples or tips would be greatly appreciated. Thanks!
H @Mithila Jayalath ,Can you please grant relationship API permissions in the Python SDK?I am getting this error:Could not fetch relationships: User does not have relationships permissions. code: 403 | X-Request-ID: 10dc4192-f4f6-91e1-9c0c-929eefa8bd15 | cluster: api | project: publicdatacdm
When creating a Cognite Function you specify the dataset it belongs to, as an example lets say D2 LCI, then the files of the function is stored as files in that dataset. However, as D2 LCI is a dataset for file storage for engineering documents these function files cause noise, not much but still. If you were to list out all files for the dataset these “internal” CDF files would simply show as regular files and would have to be filtered out.Now, as we (AkerBP) are moving away from the asset-centric and over to data modelling this might not be an issue given how data models and spaces are. But in the future when datasets are a thing of the past, how will function and the like work, where will those files be stored. Storing the file used for compute with the data they compute might be a simple implementation, but not ideal as it does cause some noise. Note: this does not only apply to Cognite Functions, but to all CDF features where “internal” files are stored alongside the regular data.
The Ghost mode in the red box doesn’t effect