User Tools

Site Tools


alarm_analysis:meta_tags

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
alarm_analysis:meta_tags [2023/06/21 10:31] sualarm_analysis:meta_tags [2023/12/29 13:40] su
Line 7: Line 7:
 **Not all Meta Tags are Discoverable** **Not all Meta Tags are Discoverable**
  
-While Power BI allows free text entry when configuring data queries, others apps such as Gestalt PnID and Trend restrict users to a "search and select" dialog. Generally, this makes UI interaction simpler, however "meta tags" are not constructed like regular tags and may not be available for search. Some meta-tags are dynamic and hold paramaters which are interpreted by the Alarm Analysis data source. +While Power BI allows free text entry when configuring data queries, others apps such as Gestalt PnID and Trend restrict users to a "search and select" dialog. Generally, this makes UI interaction simpler, however "meta tags" are not constructed like regular tags and may not be available for search. Some meta-tags are dynamic and hold parameters which are interpreted by the Alarm Analysis data source. 
  
 For example, For example,
Line 13: Line 13:
   Oil Co/Osprey/ALM BA report/3.priority   Oil Co/Osprey/ALM BA report/3.priority
      
-This above meta tag requests the priority of the 3rd most frequently occuring Alarm on the Oil Co Osprey asset. Clearly this is not a value you would expect to interrogate like a regular process data tag, however there may be cases where it is required.+This above meta tag requests the priority of the 3rd most frequently occurring Alarm on the Oil Co Osprey asset. Clearly this is not a value you would expect to interrogate like a regular process data tag, however there may be cases where it is required.
  
-If explicit tag entry is not permitted in an app, and the meta-tag is not available in search, it can be manually added to the Alarm Analysis Tag Index.+If explicit tag entry is not permitted in an app, and the meta-tag is not available in search, it can be manually added to the Alarm Analysis Tag Index. For more information, refer to: [[alarm_analysis:How to add a "Meta Tag" to an Alarm Analysis Tag Index]]
  
-===== How to add a "Meta Tag" to an Alarm Analysis Tag Index ===== 
- 
-//Adding a meta-tag to an Alarm Analysis Tag Index will make it tag discoverable and allow other apps to query it.// 
- 
-**Complexity Level:** Advanced \\ 
-**Required Privileges:** App Store Connect Admiminstrator 
- 
-To administer an Alarm Analysis Tag Index, you must log on the App Store Connect server hosting the Alarm Analysis data source. The instructions below are useful Powershell command. 
- 
-**1. Identifiy Alarm Analysis Tag Indices** 
- 
-  ### Get all AA Tag Indices 
-   
-  Invoke-WebRequest -Uri http://localhost:9200/_cat/indices/*tagidx?v ` 
-     -Method Get ` 
-     | Select-Object -Expand Content 
- 
-Tag Indices names are constructed thus:  
- 
-   [orgname].[assetname].tagidx  
-   e.g. "oilco.osprey.tagidx" 
- 
-**2. Query a Tag Index** 
- 
-  ### Find tag in tag index 
- 
-  $body='{ 
-      "query":{ 
-          "term":{ 
-              "id":"Oil Co/Osprey/Export Gas/Alarm State" 
-          } 
-      } 
-  }' 
-   
-  Invoke-RestMethod -Uri http://localhost:9200/oilco.osprey.tagidx/_search ` 
-    -ContentType 'application/json' ` 
-    -Method Post ` 
-    -Body '{"query":{"term":{"id":"Oil Co/Osprey/Export Gas/Alarm State"}}}' ` 
-    | ConvertTo-Json -Depth 20 
-     
-The above query is checking the "oilco.osprey.tagidx" for meta-tag "Oil Co/Osprey/Export Gas/Alarm State". 
- 
-**3. Add an entry to a Tag Index** 
- 
-If a tag doesn't already exist, it is safe to create it. 
- 
-  ### Add tag to tag index 
- 
-  $body='{ 
-      "query":{ 
-          "term":{ 
-              "id":"Oil Co/Osprey/Export Gas/Alarm State" 
-          } 
-      } 
-  }' 
- 
-  Invoke-RestMethod -Uri http://localhost:9200/oilco.osprey.tagidx/_search ` 
-    -ContentType 'application/json' ` 
-    -Method Post ` 
-    -Body '{"query":{"term":{"id":"Oil Co/Osprey/Export Gas/Alarm State"}}}' ` 
-    | ConvertTo-Json -Depth 20 
- 
-**4. Remove an entry to a Tag Index** 
  
  
    
alarm_analysis/meta_tags.txt · Last modified: 2024/01/31 14:23 by su