<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Is there a way to track which user changed the setting of a Point?]]></title><description><![CDATA[<p dir="auto">I used to see which user changed a point setting in Annotation, but not any more. (but perhaps that was on another installation). And would there be a way to pull that data through the API?</p>
<p dir="auto">Thanks</p>
<p dir="auto"><em>core 2.8.4 build 532</em></p>
]]></description><link>https://forum.mango-os.com/topic/2761/is-there-a-way-to-track-which-user-changed-the-setting-of-a-point</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 12:24:39 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/2761.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 12 May 2017 05:36:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is there a way to track which user changed the setting of a Point? on Thu, 12 Oct 2017 15:46:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/balistar" aria-label="Profile: Balistar">@<bdi>Balistar</bdi></a> I'm not really following.</p>
<p dir="auto">Point values which are recorded from a remote device e.g. polling a modbus slave will not contain an annotation. Setting a point's value via the UI should record an annotation.</p>
]]></description><link>https://forum.mango-os.com/post/15799</link><guid isPermaLink="true">https://forum.mango-os.com/post/15799</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Thu, 12 Oct 2017 15:46:05 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to track which user changed the setting of a Point? on Thu, 12 Oct 2017 02:19:59 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Jared. Works perfectly. Now it seems that only some data point values automatically record in annotation the user who set the point e.g.</p>
<p dir="auto">Oct 11 17:24	Set from web by user: Chatrin .</p>
<p dir="auto">Most data points value do not record the user name who set the point. I can't find a setting in edit Point details or Point Source regarding this. Mango must somehow make a data point value record the point change annotation or not.</p>
<p dir="auto">Any suggestions?</p>
]]></description><link>https://forum.mango-os.com/post/15789</link><guid isPermaLink="true">https://forum.mango-os.com/post/15789</guid><dc:creator><![CDATA[Balistar]]></dc:creator><pubDate>Thu, 12 Oct 2017 02:19:59 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to track which user changed the setting of a Point? on Tue, 10 Oct 2017 15:30:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/balistar" aria-label="Profile: balistar">@<bdi>balistar</bdi></a> Annotations are a property of point values, not points. You can display an annotatation for a point value using notation like <code>{{ pointValues[0].annotation }}</code> (where pointValues is an array). You will not get annotations when you use rollups.</p>
]]></description><link>https://forum.mango-os.com/post/15775</link><guid isPermaLink="true">https://forum.mango-os.com/post/15775</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Tue, 10 Oct 2017 15:30:36 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to track which user changed the setting of a Point? on Tue, 10 Oct 2017 11:55:06 GMT]]></title><description><![CDATA[<p dir="auto">Hi Phil, I know I can get it by writing a .js to get annotation from the json array that is returned with a REST API GET.</p>
<pre><code>function(data) { return data.annotation; }
</code></pre>
<p dir="auto">But I was hoping that something like</p>
<pre><code>{{myPoint.annotation }}
</code></pre>
<p dir="auto">would be available.</p>
]]></description><link>https://forum.mango-os.com/post/15770</link><guid isPermaLink="true">https://forum.mango-os.com/post/15770</guid><dc:creator><![CDATA[Balistar]]></dc:creator><pubDate>Tue, 10 Oct 2017 11:55:06 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to track which user changed the setting of a Point? on Mon, 09 Oct 2017 14:33:36 GMT]]></title><description><![CDATA[<p dir="auto">Hi Balistar,</p>
<p dir="auto">I'm a little surprised at the question: annotations are returned with point values through the /rest/v1/point-values</p>
<p dir="auto">Are you talking about the angular directives? Is there a specific directive?</p>
]]></description><link>https://forum.mango-os.com/post/15753</link><guid isPermaLink="true">https://forum.mango-os.com/post/15753</guid><dc:creator><![CDATA[phildunlap]]></dc:creator><pubDate>Mon, 09 Oct 2017 14:33:36 GMT</pubDate></item><item><title><![CDATA[Reply to Is there a way to track which user changed the setting of a Point? on Mon, 09 Oct 2017 05:38:28 GMT]]></title><description><![CDATA[<p dir="auto">I upgraded from 2.8 to 3.2 and to my pleasure the annotation of a point started showing again:</p>
<p dir="auto">Value	Time	Annotation<br />
0	13:23:18	Set from web by user: admin<br />
1	10:40:50	User: admin<br />
0	Oct 06 17:54	Set from web by user: Chatrin<br />
1	Oct 06 09:18	Set from web by user: Chatrin<br />
0	Oct 05 15:09	Set from web by user: Chatrin<br />
1	Oct 04 13:06	Set from web by user: admin<br />
0	Oct 03 16:52	Set from web by user: Chatrin<br />
1	Oct 03 14:43	Set from web by user: admin<br />
0	Oct 02 09:36	<br />
1	Oct 02 09:31</p>
<p dir="auto">Yes, I upgraded on Oct 2nd.</p>
<p dir="auto">This leaves me even more eager to to get Annotation through the API. Any suggestion on how to do that in an official "Mango Way"?</p>
<p dir="auto">REgards, G</p>
]]></description><link>https://forum.mango-os.com/post/15749</link><guid isPermaLink="true">https://forum.mango-os.com/post/15749</guid><dc:creator><![CDATA[Balistar]]></dc:creator><pubDate>Mon, 09 Oct 2017 05:38:28 GMT</pubDate></item></channel></rss>