org.slinkyframework:slinky-common-metrics

Slinky Framework

License

License

Categories

Categories

Metrics Application Testing & Monitoring Monitoring
GroupId

GroupId

org.slinkyframework
ArtifactId

ArtifactId

slinky-common-metrics
Last Version

Last Version

0.5.1
Release Date

Release Date

Type

Type

jar
Description

Description

Slinky Framework
Project Organization

Project Organization

Pivotal Software, Inc.

Download slinky-common-metrics

How to add to project

<!-- https://jarcasting.com/artifacts/org.slinkyframework/slinky-common-metrics/ -->
<dependency>
    <groupId>org.slinkyframework</groupId>
    <artifactId>slinky-common-metrics</artifactId>
    <version>0.5.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.slinkyframework/slinky-common-metrics/
implementation 'org.slinkyframework:slinky-common-metrics:0.5.1'
// https://jarcasting.com/artifacts/org.slinkyframework/slinky-common-metrics/
implementation ("org.slinkyframework:slinky-common-metrics:0.5.1")
'org.slinkyframework:slinky-common-metrics:jar:0.5.1'
<dependency org="org.slinkyframework" name="slinky-common-metrics" rev="0.5.1">
  <artifact name="slinky-common-metrics" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.slinkyframework', module='slinky-common-metrics', version='0.5.1')
)
libraryDependencies += "org.slinkyframework" % "slinky-common-metrics" % "0.5.1"
[org.slinkyframework/slinky-common-metrics "0.5.1"]

Dependencies

compile (5)

Group / Artifact Type Version
io.micrometer : micrometer-core jar 1.0.6
org.slinkyframework : slinky-common-aop jar 0.5.1
org.springframework.boot : spring-boot-starter-logging jar 2.0.4.RELEASE
org.aspectj : aspectjrt jar 1.8.13
org.checkerframework : checker-qual Optional jar 2.0.1

test (1)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter-test jar 2.0.4.RELEASE

Project Modules

There are no modules declared in this project.

Slinky Framework Build Status Code Coverage

Introduction

The Slinky Framework is an opinionated framework that makes developing web scale applications quicker and easier.

The framework aims to provide a high level of consistency and removal of duplication across component code and build configurations.

Developers of Slinky applications should therefore not need to be cutting-and-pasting boiler plate code and configuration between components due to the use of configuration builders, aspects and Maven parent POM files.

Overview

The Slinky Framework is designed around the use of the Hexagonal Design Pattern (aka Ports & Adapters Design Pattern).

Using the Hexagonal Design Pattern an application has well defined layers. By using well defined interfaces between layers, functionality can be 'hooked' onto or introduced at each layer.

Insert picture here:

The Slinky Framework uses AspectJ aspects and the RestController, SlinkyApplication, SlinkyClient and SlinkyRepository interfaces to introduce cross-cutting functionality such as Structured Logging.

The Slinky Framework also helps manage a component's dependencies by providing a minimal suite of pre-selected dependencies that have had all of their transitive dependencies resolved to avoid conflicts. These conflicts can sometimes be hidden and not encountered until runtime.

The packages selected for use when building a Slinky application are:

  • Java 8
  • Maven
  • AspectJ
  • Spring
  • Spring Boot
  • Spring Cloud
  • SLF4J
  • JUnit
  • Hamcrest
  • Mockito
  • Cucumber-JVM
  • WireMock

See Dependency Management for how a Slinky application simplifies this problem.

Features

The following features are provided by the Slinky Framework:

Experimental Features

The following features are in the early stages of being added to the Slinky Framework and may be subject to change:

  • Performance Testing

Releases

Notes on the Slinky Framework releases can be found here.

Build Profiles

To be documented:

mvn clean verify -P coverage mvn clean compile -P checker mvn clean install -P docker mvn clean verify -P performance

Versions

Version
0.5.1
0.5.0
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0