Codota Logo
MemoryInformationData.getPlatformIdent
Code IndexAdd Codota to your IDE (free)

How to use
getPlatformIdent
method
in
rocks.inspectit.shared.all.communication.data.MemoryInformationData

Best Java code snippets using rocks.inspectit.shared.all.communication.data.MemoryInformationData.getPlatformIdent (Showing top 8 results out of 315)

  • Common ways to obtain MemoryInformationData
private void myMethod () {
MemoryInformationData m =
  • Codota Iconnew MemoryInformationData()
  • Smart code suggestions by Codota
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
public Object getAggregationKey(MemoryInformationData object) {
  return object.getPlatformIdent();
}
origin: inspectIT/inspectIT

/**
 * {@inheritDoc}
 */
@Override
public MemoryInformationData getClone(MemoryInformationData memoryInformationData) {
  MemoryInformationData clone = new MemoryInformationData();
  clone.setPlatformIdent(memoryInformationData.getPlatformIdent());
  clone.setSensorTypeIdent(memoryInformationData.getSensorTypeIdent());
  return clone;
}
origin: inspectIT/inspectIT

@Test
public void noPlatform() throws Exception {
  when(cachedDataService.getPlatformIdentForId(PLATFORM_ID)).thenReturn(null);
  long time = RandomUtils.nextLong();
  when(data.getPlatformIdent()).thenReturn(PLATFORM_ID);
  when(data.getTimeStamp()).thenReturn(new Timestamp(time));
  when(data.getCount()).thenReturn(1);
  Collection<Builder> pointBuilderCol = builder.createBuilders(data);
  assertThat(pointBuilderCol.size(), is(1));
  Builder pointBuilder = pointBuilderCol.iterator().next();
  assertThat(getMeasurement(pointBuilder), is(Series.MemoryInformation.NAME));
  assertThat(getTime(pointBuilder), is(time));
  assertThat(getPrecision(pointBuilder), is(TimeUnit.MILLISECONDS));
  assertThat(getTags(pointBuilder), hasEntry(Series.TAG_AGENT_ID, String.valueOf(PLATFORM_ID)));
  assertThat(getTags(pointBuilder), not(hasKey(Series.TAG_AGENT_NAME)));
}
origin: inspectIT/inspectIT

when(data.getPlatformIdent()).thenReturn(PLATFORM_ID);
when(data.getTimeStamp()).thenReturn(new Timestamp(time));
when(data.getCount()).thenReturn(5);
origin: inspectIT/inspectIT

MemoryInformationData memoryInformationData = (MemoryInformationData) this.cut.get();
assertThat(memoryInformationData.getPlatformIdent(), is(1L));
assertThat(memoryInformationData.getSensorTypeIdent(), is(2L));
assertThat(memoryInformationData.getCount(), is(0));
origin: inspectIT/inspectIT

assertThat(memoryInformationData.getPlatformIdent(), is(1L));
assertThat(memoryInformationData.getSensorTypeIdent(), is(2L));
assertThat(memoryInformationData.getCount(), is(3));
origin: inspectIT/inspectIT

when(data.getPlatformIdent()).thenReturn(PLATFORM_ID);
when(data.getTimeStamp()).thenReturn(new Timestamp(time));
when(data.getCount()).thenReturn(5);
origin: inspectIT/inspectIT

MemoryInformationData newMemoryInformationData = new MemoryInformationData();
newMemoryInformationData.setPlatformIdent(this.memoryInformationData.getPlatformIdent());
newMemoryInformationData.setSensorTypeIdent(this.memoryInformationData.getSensorTypeIdent());
newMemoryInformationData.setCount(this.memoryInformationData.getCount());
rocks.inspectit.shared.all.communication.dataMemoryInformationDatagetPlatformIdent

Popular methods of MemoryInformationData

  • getCount
    Gets #count.
  • getMaxUsedHeapMemorySize
    Gets #maxUsedHeapMemorySize.
  • getMaxUsedNonHeapMemorySize
    Gets #maxUsedNonHeapMemorySize.
  • getMinUsedHeapMemorySize
    Gets #minUsedHeapMemorySize.
  • getMinUsedNonHeapMemorySize
    Gets #minUsedNonHeapMemorySize.
  • getTotalUsedHeapMemorySize
    Gets #totalUsedHeapMemorySize.
  • getTotalUsedNonHeapMemorySize
    Gets #totalUsedNonHeapMemorySize.
  • getTimeStamp
  • getTotalComittedHeapMemorySize
    Gets #totalComittedHeapMemorySize.
  • getTotalComittedNonHeapMemorySize
    Gets #totalComittedNonHeapMemorySize.
  • getTotalFreePhysMemory
    Gets #totalFreePhysMemory.
  • getTotalFreeSwapSpace
    Gets #totalFreeSwapSpace.
  • getTotalFreePhysMemory,
  • getTotalFreeSwapSpace,
  • setPlatformIdent,
  • setSensorTypeIdent,
  • <init>,
  • getSensorTypeIdent,
  • getMaxComittedHeapMemorySize,
  • getMaxComittedNonHeapMemorySize,
  • getMaxComittedVirtualMemSize

Popular in Java

  • Finding current android device location
  • setRequestProperty (URLConnection)
  • orElseThrow (Optional)
  • runOnUiThread (Activity)
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Reference (javax.naming)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now