Giter Site home page Giter Site logo

command 'az timeseriesinsights'= 'CommandNotFoundError: 'timeseriesinsights' is misspelled or not recognized by the system.' about digital-twins-samples HOT 3 OPEN

azure-samples avatar azure-samples commented on July 20, 2024
command 'az timeseriesinsights'= 'CommandNotFoundError: 'timeseriesinsights' is misspelled or not recognized by the system.'

from digital-twins-samples.

Comments (3)

logcorner avatar logcorner commented on July 20, 2024

+1

from digital-twins-samples.

howardginsburg avatar howardginsburg commented on July 20, 2024

I updated the scripts needed to build out the TSI instance and plumbing. I don't have permissions to do a pull request, so here it is.

Create a Time Series Insights (TSI) environment

  1. The commands below will create a storage account (needed by TSI) and provision the TSI environment

    $storage="adtholtsitorage"+(get-random -maximum 10000)
    $tsiname=$random+"tsienv"
    az storage account create -g $rgname -n $storage --https-only -l $location
    $key=$(az storage account keys list -g $rgname -n $storage --query [0].value --output tsv)
    az tsi environment gen2 create --name '$tsiname' --location $location --resource-group $rgname --sku name="L1" capacity=1 --time-series-id-properties name='$dtId' type=String --warm-store-configuration data-retention=P7D --storage-configuration account-name=$storage management-key=$key
    
  2. After the TSI environment is provisioned, we need to setup an event source. We will use the Event Hub that receives the processed Twin Change events

    $es_resource_id=$(az eventhubs eventhub show -n tsi-event-hub -g $rgname --namespace $ehnamespace --query id -o tsv)
    $shared_access_key=$(az eventhubs namespace authorization-rule keys list -g $rgname --namespace-name $ehnamespace -n RootManageSharedAccessKey --query primaryKey --output tsv)
    az tsi event-source eventhub create --resource-group $rgname --name 'tsieh' --environment-name $tsiname --event-hub-name 'tsi-event-hub' --key-name RootManageSharedAccessKey --shared-access-key $shared_access_key --service-bus-namespace $ehnamespace --event-source-resource-id $es_resource_id --consumer-group-name '$Default' --location $location
    
  3. Finally, configure permissions to access the data in the TSI environment.

    $id=$(az ad user show --id $username --query objectId -o tsv)
    az tsi access-policy create -g $rgname --environment-name $tsiname -n access1 --principal-object-id $id  --description "some description" --roles Contributor Reader
    

from digital-twins-samples.

cranberry13 avatar cranberry13 commented on July 20, 2024

The correct time series commands are:

az eventhubs eventhub create --name "tsi-event-hub" --resource-group $rgname --namespace-name $ehnamespace

AND

az eventhubs eventhub authorization-rule create --rights Listen Send --resource-group $rgname --namespace-name $ehnamespace --eventhub-name "tsi-event-hub" --name

AND

az tsi environment gen2 create --name $t siname --location $location --resource-group $rgname --sku name="L1" capacity=1 --time-series-id-properties name ='$dtId' type=String --warm-store-configuration data-retention=P7D --storage-configuration account-name=$storage management-key=$key

from digital-twins-samples.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.