Apache Ofbiz Advanced Framework Training Video Transcription

Total Page:16

File Type:pdf, Size:1020Kb

Apache Ofbiz Advanced Framework Training Video Transcription Page 1 of 208 Apache OFBiz Advanced Framework Training Video Transcription Written and Recorded by David E. Jones Transcription and Editing by Nathan A. Jones Brought to you by Undersun Consulting Based on: The Apache Open For Business OFBiz.org Project Copyright 2006 Undersun Consulting LLC - All Rights Reserved Page 2 of 208 Copyright 2006 Undersun Consulting LLC Copyright 2006 David E. Jones Some content from The Apache Open For Business Project and is Copyright 2001-2006 Apache Software Foundation Copyright 2006 Undersun Consulting LLC - All Rights Reserved Page 3 of 208 Biz is running inside an application server, this infra- Advanced Framework structure still applies. The Containers and Compo- nents, they're just used in a slightly different way. The Overview easiest way to run OFBiz is out of the box, using the Introducing the Series OFBiz start executable jar file, which uses the con- tainer and component infrastructure to load everything Starting screen site/training/AdvancedFramework.html up, get all the tools started when the application server Hello my name is David Jones, and this is the Ad- shuts down, and to stop all of the tools and such as vanced Framework Training Video from Undersun Con- well. And also to configure each of the framework and sulting. I'll be recording and narrating this. I'm one of applications components that make up the open for the administrators of the Open for Business Project, business project. and offer various services including things like these So we'll talk about those, how they're configured, the training videos through a company that is run by myself different things to do plus some conventions for the and Andy Zeneski called Undersun Consulting. component directories and such. This video is an overview of the Advanced Framework In the next section we'll talk about the web application training. Here on the screen you can see the outline for framework, including the widget library, the various this. This outline is available through the OFBiz.org widgets; the Screen Widget, the Form Widget, the website, also the html file for this is in the website direc- Menu Widget and Tree Widget, as well as MiniLang, tory in the OFBiz source code repository. The target which is the main one here in the simple-method, is audience for this video is developers and architects, what it's called. MiniLang is sort of a category that it especially those who are senior level and who will be goes in, and we'll talk about that, how to implement helping to supervise and support those who will be do- logic, especially for validation, data mapping, those ing OFBiz based development. sorts of things, in that language. 00:01:24 screen changes to We'll also talk about other user interface level things site/training/BasicFrameworkToolsOverview.html here such as BeanShell which we use for data prepara- Some prerequisites for this, the OFBiz introduction vid- tion and scripting, FreeMarker which we use for tem- eos, which follow this basic framework and tools over- plates, for various things including user interfaces in- view outline, are very important. cluding generating XML files and such. And one spe- cific application of that is Generating PDFs. We'll use 00:01:30 screen changes to site/training/ the screen widget, and other such tools FreeMarker, AdvancedFramework BeanShell. So with the FreeMarker files they'll actually generate the XSL:FO, formatted XML file, rather than These videos cover the OFBiz framework at a high an html file, and then we use the FOP project from level, and so should be reviewed before going over Apache to turn that XSL:FO file into a PDF. these videos so you have an idea of what the big pieces are, what the major things are in the framework, We'll also briefly discuss JPublish, which is what we and how they fit together. In these videos we will be use to separate logic from the layout before we have going into more detail on each of the videos, as well as the screen widget, and also to use decoration pattern to providing more background information on Java and compose more complicated pages from different files. J2EE and some of the other infrastructure that's in the open for business project. We'll also talk briefly about the Region tool in OFBiz, which is used basically depends on these servlet API, While extensive knowledge of Java and J2EE is not and is used for JSPs, since they are not a generic tem- required, some familiarity of basic Java and some J2EE plating tool and must be executed in a servlet context. specs like the service specifications JDBC for Database In order to do composite views we have this Region Connectivity, the JNDI, the Naming Directory Interface, tool which is based on a servlet context running, with a and JTA, the Transaction API, are important. We will be request and response objects being passed throughout going over some of those in the first section, this Just these things. So we'll overview briefly the Region Enough Java and J2EE, talking about Java Classpath, Framework and the OFBiz Taglib that's used in JSP the various things about these J2EE APIs we just men- files. So Jpublish and the Region stuff you'll find some tioned. of this code still in certain parts of Ofbiz from older things that have been written that way, although if you We'll also discuss in this video the OFBiz base, espe- want to write new things you can use these tools, al- cially the Containers and Components and how they though very much the recommended tools to use for are used for getting OFBiz started when OFBiz is run- user interface things are the screen widget and the ning as the main program with application components related widgets there, but we'll talk more specifically such as the servlet Container and TransactionManager about when these various different tools are best used. and such, running inside OFBiz. As well as when OF- Copyright 2006 Undersun Consulting LLC - All Rights Reserved Page 4 of 208 In the MiniLang we have the simple-map-processor and bit about the workflow engine that's implemented in the simple-method, as two of the tools there. Simple- OFBiz, and the new workflow engine we're moving to- map-processor snippets can be imbedded in simple- wards which is a separate open source project called method files, and that's often how you'll see them, but the Shark workflow engine, which implements this simple-map-processors can also be used on their own. same specification, the WfMC and OMG specification, And we'll talk about the various operations, the seman- that then will be the target of the OFBiz Workflow En- tics, and how these things fit together. Also when these gine. are best used versus implementing services or the con- trol servlet request events, when those two things are I should note before we get into this, before we wrap typically best implemented using a simple-method ver- this up here, the Workflow Engine is based on WfMC is sus implementing them in Java or some other scripting very much of this workflow style, where we have states language. and transitions between them, as opposed to the message-flow style. This is very good for managing a In the next section we'll talk about the Entity and Serv- large volume of process that need to be both auto- ice Engines. The Entity Engine is what we use for per- mated as well as manual. sistence and we'll go into detail about the design goals and how this is configured and used, and also some of For the most part in OFBiz what you'll see though is the more advanced topics, view-entities and details this other tool, the Service ECA rules, which are the about the delegator API and related objects there, and Event-Condition-Action rules, which is kind of a rule also about a little bit about the GenericHelper interface language which is event based, or in the case of the and what the delegator is capable of handling, and the OFBiz Service Engine, business event based, and this Entity ECA rules, which are used to trigger services can be used to tie processes together, and we'll talk in based on different data level operations that are hap- more detail about that. That's what you'll see used for pening. the most part in OFBiz, because it's a very nice model for managing high level processes and is very easy to And I should mention just as a preview here, we'll cer- configure and change when customizing the service tainly go into this in more detail later, these are mainly and application that are in OFBiz. intended for data maintenance and not business proc- ess management. For business process management The DataFile tool is the last part here, and this is a tool that's best left at the logic level, with Service ECA rules, that helps with something that is often run into when which is covered in the next section about the Service you're integrating or communicating with other systems, Engine. and that is dealing with Flat Files, especially in cases where you need to do a data level integration with an We'll talk about the design goals and features of the older system. It's very common to run into a need for Service Engine, the different things you can do with it, different varieties of flat files, whether they be fixed and the various things you typically want to do in an width files, or character separated, or these different enterprise application in the logic tier that this facili- sorts of things, the data file tool can help you interact tates.
Recommended publications
  • IPS Signature Release Note V9.17.79
    SOPHOS IPS Signature Update Release Notes Version : 9.17.79 Release Date : 19th January 2020 IPS Signature Update Release Information Upgrade Applicable on IPS Signature Release Version 9.17.78 CR250i, CR300i, CR500i-4P, CR500i-6P, CR500i-8P, CR500ia, CR500ia-RP, CR500ia1F, CR500ia10F, CR750ia, CR750ia1F, CR750ia10F, CR1000i-11P, CR1000i-12P, CR1000ia, CR1000ia10F, CR1500i-11P, CR1500i-12P, CR1500ia, CR1500ia10F Sophos Appliance Models CR25iNG, CR25iNG-6P, CR35iNG, CR50iNG, CR100iNG, CR200iNG/XP, CR300iNG/XP, CR500iNG- XP, CR750iNG-XP, CR2500iNG, CR25wiNG, CR25wiNG-6P, CR35wiNG, CRiV1C, CRiV2C, CRiV4C, CRiV8C, CRiV12C, XG85 to XG450, SG105 to SG650 Upgrade Information Upgrade type: Automatic Compatibility Annotations: None Introduction The Release Note document for IPS Signature Database Version 9.17.79 includes support for the new signatures. The following sections describe the release in detail. New IPS Signatures The Sophos Intrusion Prevention System shields the network from known attacks by matching the network traffic against the signatures in the IPS Signature Database. These signatures are developed to significantly increase detection performance and reduce the false alarms. Report false positives at [email protected], along with the application details. January 2020 Page 2 of 245 IPS Signature Update This IPS Release includes Two Thousand, Seven Hundred and Sixty Two(2762) signatures to address One Thousand, Nine Hundred and Thirty Eight(1938) vulnerabilities. New signatures are added for the following vulnerabilities: Name CVE–ID
    [Show full text]
  • Ofbiz an Insider View
    OFBiz An Insider View Prepared By: Basil Argasosy Senior Computer Engineering Student King Fahd University of Petroleum & Minerals (K.F.U.P.M) September 01, 2005 Contact Information [email protected] [email protected] or through my personal webpage 1 OFBiz : An Insider View Introduction: The OFBiz framework utilizes the common Three-Tier “Layers” Architecture model in all its applications. It has the Data Layer, the Business “logic” layer, and the Presentation “user interface” layer. The Data Layer and the Service layer have their own engines that are responsible for interaction with the layer. 1) Data Model Layer: It represents the database. There is an Entity Engine that is responsible of this layer that includes database connection, data retrieval, data storage…etc. It used the java Generic Delegator class to connect with the database, and it uses the java Generic Value to represent an entity row to be inserted in the database. 2) Business Logic Layer: It represents the logic, or the services provided to the user and performed on the data layer "database”. There can be services of many types like java, SOAP, simple, workflow, etc. and each type of service has its own handler. There is a Service Engine that is responsible for dealing with services, calling the service, etc. 3) Presentation Layer: OFBiz has moved to use "Screens" to represent the OFBiz pages. So, each page should normally be represented as a screen. An OFBiz page consists of many components like headers, footer, appheader,..etc, so when rendering the page, these are all combined in the order they were placed, or included, in the screen.
    [Show full text]
  • ALEXANDER HSU [email protected]
    ALEXANDER HSU [email protected] EDUCATION UNIVERSITY OF CALIFORNIA, SANTA BARBARA Bachelor of Science Degree in Computer Science and Minor in Japanese July 2008 – Present Cumulative GPA: 3.89/4.0 (212 units); Expected Date of Graduation: June 2012 HONORS/AWARDS 2011 UCSB EACS Dept. Outstanding Service Award 2010 Boeing Corporation Scholarship 2011 National Engineering Week Scholarship Engineering Honors Program since Spring 2009 2011 Yardi Systems Scholarship 2009 Starting Line Cover Photography Award SKILLS Programming Languages: Proficient: C/C++, HTML/CSS, Java, JavaScript/JQuery, Matlab Familiar: Apache HBase, Apache OFBiz, Groovy, MySQL, OpenGL, Perl, Python, Qt Software: Photoshop, Eclipse, Netbeans General: Fluent in English and Chinese; 4th year college level Japanese WORK EXPERIENCE UCSB RESEARCH CENTER FOR VIRTUAL ENVIRONMENTS AND BEHAVIOR Position: Research Assistant Sept 2011 – Present Learning how to design and develop virtual environments through the use of 3DSMax Learning how to program immersive environments through the use of Python scripts to allow for experiments. UCSB DISTRIBUTED SYSTEM LAB Position: Research Assistant June 2011 – Present Implemented the Transaction management layer of G-Store, a scalable data store with transactional multi-key access functionality, using Strict Two Phase Locking (S2PL) to control concurrency. Implemented an independent working system following a regular Apache HBase key-value store implementation and using the Two Phase Commit protocol (2PC) to coordinate the participating nodes. WARP9INC Position: Web Development Intern March 2011 – Present Implement and manage dynamic ecommerce websites with MVC interaction pattern, through Apache OFBiz. Manage both front-end (HTML/CSS/JavaScript) and back-end (Java/Groovy/OFBiz/MySQL). UCSB ACCOUNTING SERVICES AND CONTROLS Position: Systems Administrator August 2010 – June 2011 Troubleshoot and remove viruses; set up/connect various computers onto the domain; and manage the department website.
    [Show full text]
  • EMS Web App Installation, Configuration, & User Guides May 2019
    EMS Web App Installation, Configuration, & User Guides May 2019 Accruent, LLC 11500 Alterra Parkway, Suite 110, Austin, TX 78758 www.accruent.com Accruent Confidential and Proprietary, copyright 2019. All rights reserved. This material contains confidential information that is proprietary to, and the property of, Accruent, LLC. Any unauthorized use, duplication, or disclosure of this material, in whole or in part, is prohibited. No part of this publication may be reproduced, recorded, or stored in a retrieval system or transmitted in any form or by any means—whether electronic, mechanical, photographic, or otherwise—without the written permission of Accruent, LLC. The information contained in this document is subject to change without notice. Accruent makes no warranty of any kind with regard to this material, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. Accruent, or any of its subsidiaries, shall not be liable for errors contained herein or for incidental or consequential damages in connection with the furnishing, performance, or use of this material. Accruent Confidential and Proprietary © 2019 Page | i Table of Contents CHAPTER 1: EMS Web App Installation Guide 1 Contact Customer Support 2 CHAPTER 2: EMS Web App (V44.1) Introduction 3 Introduction to the EMS Web App 3 Installation Requirements 3 Upgrade Considerations 3 Contact Customer Support 4 CHAPTER 3: System Architecture 5 CHAPTER 4: Prerequisites and Requirements 7 Prerequisites 7 EMS Database Server Requirements
    [Show full text]
  • Return of Organization Exempt from Income
    OMB No. 1545-0047 Return of Organization Exempt From Income Tax Form 990 Under section 501(c), 527, or 4947(a)(1) of the Internal Revenue Code (except black lung benefit trust or private foundation) Open to Public Department of the Treasury Internal Revenue Service The organization may have to use a copy of this return to satisfy state reporting requirements. Inspection A For the 2011 calendar year, or tax year beginning 5/1/2011 , and ending 4/30/2012 B Check if applicable: C Name of organization The Apache Software Foundation D Employer identification number Address change Doing Business As 47-0825376 Name change Number and street (or P.O. box if mail is not delivered to street address) Room/suite E Telephone number Initial return 1901 Munsey Drive (909) 374-9776 Terminated City or town, state or country, and ZIP + 4 Amended return Forest Hill MD 21050-2747 G Gross receipts $ 554,439 Application pending F Name and address of principal officer: H(a) Is this a group return for affiliates? Yes X No Jim Jagielski 1901 Munsey Drive, Forest Hill, MD 21050-2747 H(b) Are all affiliates included? Yes No I Tax-exempt status: X 501(c)(3) 501(c) ( ) (insert no.) 4947(a)(1) or 527 If "No," attach a list. (see instructions) J Website: http://www.apache.org/ H(c) Group exemption number K Form of organization: X Corporation Trust Association Other L Year of formation: 1999 M State of legal domicile: MD Part I Summary 1 Briefly describe the organization's mission or most significant activities: to provide open source software to the public that we sponsor free of charge 2 Check this box if the organization discontinued its operations or disposed of more than 25% of its net assets.
    [Show full text]
  • Kali Linux Penetration Testing Bible
    Telegram Channel : @IRFaraExam Table of Contents Cover Title Page Introduction What Does This Book Cover? Companion Download Files How to Contact the Publisher How to Contact the Author CHAPTER 1: Mastering the Terminal Window Kali Linux File System Managing Users and Groups in Kali Files and Folders Management in Kali Linux Remote Connections in Kali Kali Linux System Management Networking in Kali Linux Summary CHAPTER 2: Bash Scripting Basic Bash Scripting Printing to the Screen in Bash Variables Script Parameters User Input Functions Conditions and Loops Summary CHAPTER 3: Network Hosts Scanning Basics of Networking Network Scanning DNS Enumeration Telegram Channel : @IRFaraExam Summary CHAPTER 4: Internet Information Gathering Passive Footprinting and Reconnaissance Summary CHAPTER 5: Social Engineering Attacks Spear Phishing Attacks Payloads and Listeners Social Engineering with the USB Rubber Ducky Summary CHAPTER 6: Advanced Enumeration Phase Transfer Protocols E‐mail Protocols Database Protocols CI/CD Protocols Web Protocols 80/443 Graphical Remoting Protocols File Sharing Protocols Summary CHAPTER 7: Exploitation Phase Vulnerabilities Assessment Services Exploitation Summary CHAPTER 8: Web Application Vulnerabilities Web Application Vulnerabilities Summary CHAPTER 9: Web Penetration Testing and Secure Software Development Lifecycle Web Enumeration and Exploitation Secure Software Development Lifecycle Summary CHAPTER 10: Linux Privilege Escalation Telegram Channel : @IRFaraExam Introduction to Kernel Exploits and Missing Configurations
    [Show full text]
  • Arxiv:1812.02759V2 [Astro-Ph.IM] 10 Dec 2018 Abstract Twenty Years Have Passed Since first Light for the Sloan Digital Sky Survey (SDSS)
    Draft version December 12, 2018 Preprint typeset using LATEX style emulateapj v. 12/16/11 THE FIFTEENTH DATA RELEASE OF THE SLOAN DIGITAL SKY SURVEYS: FIRST RELEASE OF MANGA DERIVED QUANTITIES, DATA VISUALIZATION TOOLS AND STELLAR LIBRARY D. S. Aguado1, Romina Ahumada2, Andres´ Almeida3, Scott F. Anderson4, Brett H. Andrews5, Borja Anguiano6, Erik Aquino Ort´ız7, Alfonso Aragon-Salamanca´ 8, Maria Argudo-Fernandez´ 9,10, Marie Aubert11, Vladimir Avila-Reese7, Carles Badenes5, Sandro Barboza Rembold12,13, Kat Barger14, Jorge Barrera-Ballesteros15, Dominic Bates16, Julian Bautista17, Rachael L. Beaton18, Timothy C. Beers19, Francesco Belfiore20, Mariangela Bernardi21, Matthew Bershady22, Florian Beutler17, Jonathan Bird23, Dmitry Bizyaev24,25, Guillermo A. Blanc18, Michael R. Blanton26, Michael Blomqvist27, Adam S. Bolton28, Med´ eric´ Boquien9, Jura Borissova29,30, Jo Bovy31,32, William Nielsen Brandt33,34,35, Jonathan Brinkmann24, Joel R. Brownstein36, Kevin Bundy20, Adam Burgasser37, Nell Byler4, Mariana Cano Diaz7, Michele Cappellari38, Ricardo Carrera39, Bernardo Cervantes Sodi40, Yanping Chen41, Brian Cherinka15, Peter Doohyun Choi42, Haeun Chung43, Damien Coffey44, Julia M. Comerford45, Johan Comparat44, Kevin Covey46, Gabriele da Silva Ilha12,13, Luiz da Costa13,47, Yu Sophia Dai48, Guillermo Damke3,50, Jeremy Darling45, Roger Davies38, Kyle Dawson36, Victoria de Sainte Agathe51, Alice Deconto Machado12,13, Agnese Del Moro44, Nathan De Lee23, Aleksandar M. Diamond-Stanic52, Helena Dom´ınguez Sanchez´ 21, John Donor14, Niv Drory53, Helion´ du Mas des Bourboux36, Chris Duckworth16, Tom Dwelly44, Garrett Ebelke6, Eric Emsellem54,55, Stephanie Escoffier11, Jose´ G. Fernandez-Trincado´ 56,2,57, Diane Feuillet58, Johanna-Laina Fischer21, Scott W. Fleming59, Amelia Fraser-McKelvie8, Gordon Freischlad24, Peter M. Frinchaboy14, Hai Fu60, Llu´ıs Galbany5, Rafael Garcia-Dias1,61, D.
    [Show full text]
  • Cracking the Lens: Targeting HTTP's Hidden Attack Surface
    Cracking the Lens: Targeting HTTP's Hidden Attack Surface James Kettle - [email protected] - @albinowax Modern websites are browsed through a lens of transparent systems built to enhance performance, extract analytics and supply numerous additional services. This almost invisible attack surface has been largely overlooked for years. In this paper, I'll show how to use malformed requests and esoteric headers to coax these systems into revealing themselves and opening gateways into our victim's networks. I'll share how by combining these techniques with a little Bash I was able to thoroughly perforate DoD networks, trivially earn over $30k in vulnerability bounties, and accidentally exploit my own ISP. While deconstructing the damage, I'll also showcase several hidden systems it unveiled, including not only covert request interception by the UK's largest ISP, but a substantially more suspicious Colombian ISP, a confused Tor backend, and a system that enabled reflected XSS to be escalated into SSRF. You'll also learn strategies to unblinker blind SSRF using exploit chains and caching mechanisms. Finally, to further drag these systems out into the light, I'll release Collaborator Everywhere - an open source Burp Suite extension which augments your web traffic with a selection of the best techniques to harvest leads from cooperative websites. Outline Introduction Methodology Listening Research Pipeline Scaling Up Misrouting Requests Invalid Host Investigating Intent - BT Investigating Intent - Metrotel Input Permutation Host Override Ambiguous Requests Breaking Expectations Tunnels Targeting Auxiliary Systems Gathering Information Remote Client Exploits Preemptive Caching Conclusion Introduction Whether it's ShellShock, StageFright or ImageTragick, the discovery of a serious vulnerability in an overlooked chunk of attack surface is often followed by numerous similar issues.
    [Show full text]
  • Ofbench: an Enterprise Application Benchmark for Cloud Resource Management Studies
    OFBench: an Enterprise Application Benchmark for Cloud Resource Management Studies Jean Moschetta Giuliano Casale Imperial College London Imperial College London Department of Computing Department of Computing [email protected] [email protected] Abstract—We introduce OFBench, a new research benchmark To deal with this requirement, we propose OFBench, a for enterprise applications. OFBench is a load generator for realistic research benchmark for the demo e-commerce store the demo e-commerce component of the Apache OFBiz enter- distributed with the Apache Open For Business (OFBiz) ERP prise resource planning (ERP) framework. ERP applications are increasingly important in the cloud market due to the framework. OFBiz is a framework deployed in production growing popularity of Software-as-a-Service (SaaS) solutions, environments, hence our benchmark allows to experiment with hence OFBench is useful to explore the resource consumption a software architecture and a technology stack that are repre- patterns arising in these applications. On client-side, OFBench sentative of real business applications. For these applications, features randomized customer surfing patterns, workload gener- OFBench can stress a range of performance indicators such ation based on automation of real web browsers, reproducible burstiness in inter-request and inter-session think times, non- as response times, CPU utilization, memory consumption, stationary workload generation. On server-side, it features JMX number of active sessions over time, multi-threading levels, performance monitoring, business logic instrumentation, and data caching. JMX measurement beans and code instrumen- synchronization with client-side monitoring via TCP sockets. We tation are used on server-side to perform monitoring.
    [Show full text]
  • Design and Analysis of Adaptive Caching Techniques for Internet Content Delivery
    Dissertation Design and Analysis of Adaptive Caching Techniques for Internet Content Delivery Thesis approved by the Department of Computer Science of the University of Kaiserslautern (TU Kaiserslautern) for the award of the Doctoral Degree Doctor of Engineering (Dr.-Ing.) to Daniel S. Berger Date of the viva : June 8, 2018 Dean : Prof. Dr. Stefan Deßloch PhD committee Chair : Prof. Dr. Pascal Schweitzer Reviewers : Prof. Dr. Jens B. Schmitt Prof. Dr. Florin Ciucu (University of Warwick) Prof. Dr. Mor Harchol-Balter (Carnegie Mellon University) D 386 Abstract Fast Internet content delivery relies on two layers of caches on the request path. Firstly, content delivery networks (CDNs) seek to answer user requests before they traverse slow Internet paths. Secondly, aggregation caches in data centers seek to answer user requests before they traverse slow backend systems. The key challenge in managing these caches is the high variability of object sizes, request patterns, and retrieval latencies. Unfortunately, most existing literature focuses on caching with low (or no) variability in object sizes and ignores the intricacies of data center subsystems. This thesis seeks to fill this gap with three contributions. First, we design a new caching system, called AdaptSize, that is robust under high object size variability. Sec- ond, we derive a method (called Flow-Offline Optimum or FOO) to predict the optimal cache hit ratio under variable object sizes. Third, we design a new caching system, called RobinHood, that exploits variances in retrieval latencies to deliver faster responses to user requests in data centers. The techniques proposed in this thesis significantly improve the performance of CDN and data center caches.
    [Show full text]
  • Dialogic Brooktrout Fax Products Linux End User Guide
    Dialogic® Brooktrout® Fax Products Linux End User Guide SDK 6.7 June 2016 931-140-15 www.dialogic.com Copyright and Legal Notice Copyright © 1998-2016 Dialogic Corporation. All Rights Reserved. You may not reproduce this document in whole or in part without permission in writing from Dialogic Corporation at the address provided below. All contents of this document are furnished for informational use only and are subject to change without notice and do not represent a commitment on the part of Dialogic Corporation and its affiliates or subsidiaries (“Dialogic”). Reasonable effort is made to ensure the accuracy of the information contained in the document. However, Dialogic does not warrant the accuracy of this information and cannot accept responsibility for errors, inaccuracies or omissions that may be contained in this document. INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH DIALOGIC® PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED BY THIS DOCUMENT. EXCEPT AS PROVIDED IN A SIGNED AGREEMENT BETWEEN YOU AND DIALOGIC, DIALOGIC ASSUMES NO LIABILITY WHATSOEVER, AND DIALOGIC DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY, RELATING TO SALE AND/OR USE OF DIALOGIC PRODUCTS INCLUDING LIABILITY OR WARRANTIES RELATING TO FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHT OF A THIRD PARTY. Dialogic products are not intended for use in certain safety-affecting situations. Please see http://www.dialogic.com/company/terms-of-use.aspx for more details. Due to differing national regulations and approval requirements, certain Dialogic products may be suitable for use only in specific countries, and thus may not function properly in other countries.
    [Show full text]
  • Graphite Documentation Release 1.1.8
    Graphite Documentation Release 1.1.8 Chris Davis Apr 19, 2021 Contents 1 Overview 1 2 FAQ 3 3 Installing Graphite 7 4 The Carbon Daemons 35 5 Feeding In Your Data 39 6 Getting Your Data Into Graphite 41 7 Administering Carbon 43 8 Administering The Webapp 45 9 Using The Composer 47 10 The Render URL API 49 11 The Metrics API 71 12 Functions 73 13 The Dashboard User Interface 105 14 The Whisper Database 113 15 The Ceres Database 117 16 Alternative storage finders 121 17 Graphite Events 125 18 Graphite Tag Support 129 19 Graphite Terminology 137 20 Tools That Work With Graphite 139 i 21 Working on Graphite-web 145 22 Client APIs 147 23 Who is using Graphite? 149 24 Release Notes 151 25 Indices and tables 207 Python Module Index 209 Index 211 ii CHAPTER 1 Overview 1.1 What Graphite is and is not Graphite does two things: 1. Store numeric time-series data 2. Render graphs of this data on demand What Graphite does not do is collect data for you, however there are some tools out there that know how to send data to graphite. Even though it often requires a little code, sending data to Graphite is very simple. 1.2 About the project Graphite is an enterprise-scale monitoring tool that runs well on cheap hardware. It was originally designed and written by Chris Davis at Orbitz in 2006 as side project that ultimately grew to be a foundational monitoring tool. In 2008, Orbitz allowed Graphite to be released under the open source Apache 2.0 license.
    [Show full text]