This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (s/defn execute-queue-length | |
| [request] | |
| (try | |
| (m/mark! @queue-length-request-meter) | |
| (let [at (time/now) | |
| tenant-id (:tenant-id request) | |
| start (or (:start request) default-start) | |
| end (or (:end request) default-end)] | |
| (if (and (date-valid start) (date-valid end)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2015-09-17T23:04:12.627+0000 hyperion 66629a40-5d90-11e5-9baf-c22dbe83bb0f sam-ThinkPad-W541 INFO [hyperion.producers.druid] - Executing druid query | |
| {:type :druid, | |
| :druid-query | |
| {:queryType :groupBy, | |
| :dataSource "prometheus", | |
| :granularity :all, | |
| :dimensions ["tenant-id"], | |
| :aggregations | |
| [{:type :count, :name "count"} | |
| {:type :min, :name "minLength", :fieldName "queue-length"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2015-09-17T23:04:12.627+0000 hyperion 66629a40-5d90-11e5-9baf-c22dbe83bb0f sam-ThinkPad-W541 INFO [hyperion.producers.druid] - Executing druid query | |
| {:type :druid, | |
| :druid-query | |
| {:queryType :groupBy, | |
| :dataSource "prometheus", | |
| :granularity :all, | |
| :dimensions ["tenant-id"], | |
| :aggregations | |
| [{:type :count, :name "count"} | |
| {:type :min, :name "minLength", :fieldName "queue-length"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Dev properties for hyperion | |
| #Override server port. Default 80 | |
| hal9002.port=8779 | |
| ## ZINN PROPERTIES | |
| zinn.logLevel=debug | |
| ## EUREKA PROPERTIES |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| 'use strict'; | |
| angular.module('eyesover') | |
| .directive('rule', function () { | |
| return { | |
| scope: { | |
| rule: '=ruleset' | |
| }, | |
| replace: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ig.module( | |
| 'game.entities.player' | |
| ).requires( | |
| 'impact.entity' | |
| ).defines(function () { | |
| EntityPlayer = ig.Entity.extend({ | |
| size: { x: 9, y: 15 }, | |
| checkAgainst: ig.Entity.TYPE.B, | |
| animSheet: new ig.AnimationSheet('assets/placeholder.png', 9, 15), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| 'use strict'; | |
| /* | |
| { | |
| name: 'is_targeted', | |
| type: 'string', | |
| label: 'Targeted?', | |
| group: 'general', | |
| index: 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Play Media | |
| { | |
| name: 'play-media', | |
| entity: 'activity', | |
| label: 'Play Media', | |
| type: 'task', | |
| params: { | |
| participant: 'customer', | |
| media: 'd3585b58-aa23-4d41-a3d7-1167261cfe21', | |
| loop: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Play Media | |
| { | |
| name: 'play-media', | |
| entity: 'activity', | |
| label: 'Play Media', | |
| type: 'task', | |
| params: {}, | |
| inputs: [{ | |
| name: 'participant', | |
| type: 'select', |